@@ -8,7 +8,10 @@ import { IMultiStepInputFactory, InputStep, IQuickPickParameters, MultiStepInput
88import { AttachRequestArguments , DebugConfigurationArguments , LaunchRequestArguments } from '../../types' ;
99import { DebugConfigurationState , DebugConfigurationType , IDebugConfigurationService } from '../types' ;
1010import { buildDjangoLaunchDebugConfiguration } from './providers/djangoLaunch' ;
11- import { buildFastAPILaunchDebugConfiguration , buildFastAPIWithFileLaunchDebugConfiguration } from './providers/fastapiLaunch' ;
11+ import {
12+ buildFastAPILaunchDebugConfiguration ,
13+ buildFastAPIWithFileLaunchDebugConfiguration ,
14+ } from './providers/fastapiLaunch' ;
1215import { buildFileLaunchDebugConfiguration } from './providers/fileLaunch' ;
1316import { buildFlaskLaunchDebugConfiguration } from './providers/flaskLaunch' ;
1417import { buildModuleLaunchConfiguration } from './providers/moduleLaunch' ;
@@ -183,7 +186,10 @@ export class PythonDebugConfigurationService implements IDebugConfigurationServi
183186 > ( ) ;
184187 debugConfigurations . set ( DebugConfigurationType . launchDjango , buildDjangoLaunchDebugConfiguration ) ;
185188 debugConfigurations . set ( DebugConfigurationType . launchFastAPI , buildFastAPILaunchDebugConfiguration ) ;
186- debugConfigurations . set ( DebugConfigurationType . launchFastAPIWithFile , buildFastAPIWithFileLaunchDebugConfiguration ) ;
189+ debugConfigurations . set (
190+ DebugConfigurationType . launchFastAPIWithFile ,
191+ buildFastAPIWithFileLaunchDebugConfiguration ,
192+ ) ;
187193 debugConfigurations . set ( DebugConfigurationType . launchFile , buildFileLaunchDebugConfiguration ) ;
188194 debugConfigurations . set ( DebugConfigurationType . launchFileWithArgs , buildFileWithArgsLaunchDebugConfiguration ) ;
189195 debugConfigurations . set ( DebugConfigurationType . launchFlask , buildFlaskLaunchDebugConfiguration ) ;
0 commit comments