File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ export async function registerDebugger(context: IExtensionContext): Promise<IExt
94
94
) ;
95
95
96
96
context . subscriptions . push (
97
- registerCommand ( Commands . Debug_Using_Launch_Config , async ( file ?: Uri ) => {
97
+ registerCommand ( Commands . Debug_Using_Launch_Config , async ( file ?: Uri ) => {
98
98
sendTelemetryEvent ( EventName . DEBUG_USING_LAUNCH_CONFIG_BUTTON ) ;
99
99
const interpreter = await getInterpreterDetails ( file ) ;
100
100
@@ -206,7 +206,11 @@ export async function registerDebugger(context: IExtensionContext): Promise<IExt
206
206
} ) ,
207
207
) ;
208
208
209
- executeCommand ( 'setContext' , 'dynamicPythonConfigAvailable' , window . activeTextEditor ?. document . languageId === 'python' ) ;
209
+ executeCommand (
210
+ 'setContext' ,
211
+ 'dynamicPythonConfigAvailable' ,
212
+ window . activeTextEditor ?. document . languageId === 'python' ,
213
+ ) ;
210
214
211
215
return buildApi ( ) ;
212
216
}
You can’t perform that action at this time.
0 commit comments