Skip to content

Commit be2a2ff

Browse files
Fix lint
1 parent 98ed8c3 commit be2a2ff

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/extension/debugger/inlineValue/pythonInlineValueProvider.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@ export class PythonInlineValueProvider implements InlineValuesProvider {
2020
viewPort: Range,
2121
context: InlineValueContext,
2222
): Promise<InlineValue[]> {
23-
const showInlineValues = getConfiguration('debugpy').get<boolean>(
24-
'showPythonInlineValues',
25-
false,
26-
);
23+
const showInlineValues = getConfiguration('debugpy').get<boolean>('showPythonInlineValues', false);
2724
if (!showInlineValues) {
2825
return [];
2926
}

0 commit comments

Comments
 (0)