Skip to content

Commit de670be

Browse files
fix lint
1 parent 29e6134 commit de670be

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/extension/extensionInit.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export async function registerDebugger(context: IExtensionContext): Promise<IExt
9494
);
9595

9696
context.subscriptions.push(
97-
registerCommand(Commands.Debug_Using_Launch_Config, async (file?: Uri) => {
97+
registerCommand(Commands.Debug_Using_Launch_Config, async (file?: Uri) => {
9898
sendTelemetryEvent(EventName.DEBUG_USING_LAUNCH_CONFIG_BUTTON);
9999
const interpreter = await getInterpreterDetails(file);
100100

@@ -206,7 +206,11 @@ export async function registerDebugger(context: IExtensionContext): Promise<IExt
206206
}),
207207
);
208208

209-
executeCommand('setContext', 'dynamicPythonConfigAvailable', window.activeTextEditor?.document.languageId === 'python');
209+
executeCommand(
210+
'setContext',
211+
'dynamicPythonConfigAvailable',
212+
window.activeTextEditor?.document.languageId === 'python',
213+
);
210214

211215
return buildApi();
212216
}

0 commit comments

Comments
 (0)