We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98ed8c3 commit be2a2ffCopy full SHA for be2a2ff
src/extension/debugger/inlineValue/pythonInlineValueProvider.ts
@@ -20,10 +20,7 @@ export class PythonInlineValueProvider implements InlineValuesProvider {
20
viewPort: Range,
21
context: InlineValueContext,
22
): Promise<InlineValue[]> {
23
- const showInlineValues = getConfiguration('debugpy').get<boolean>(
24
- 'showPythonInlineValues',
25
- false,
26
- );
+ const showInlineValues = getConfiguration('debugpy').get<boolean>('showPythonInlineValues', false);
27
if (!showInlineValues) {
28
return [];
29
}
0 commit comments