Skip to content

Commit

Permalink
Update name in dynamic config
Browse files Browse the repository at this point in the history
  • Loading branch information
paulacamargo25 committed Jun 28, 2023
1 parent d45970e commit d94f68b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
const providers = [];

providers.push({
name: 'Python: File',
name: 'Debugpy: Python File',
type: DebuggerTypeName,
request: 'launch',
program: '${file}',
Expand All @@ -33,7 +33,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
const djangoManagePath = await DynamicPythonDebugConfigurationService.getDjangoPath(folder);
if (djangoManagePath) {
providers.push({
name: 'Python: Django',
name: 'Debugpy: Django',
type: DebuggerTypeName,
request: 'launch',
program: `${workspaceFolderToken}${path.sep}${djangoManagePath}`,
Expand All @@ -46,7 +46,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
const flaskPath = await DynamicPythonDebugConfigurationService.getFlaskPath(folder);
if (flaskPath) {
providers.push({
name: 'Python: Flask',
name: 'Debugpy: Flask',
type: DebuggerTypeName,
request: 'launch',
module: 'flask',
Expand All @@ -64,7 +64,7 @@ export class DynamicPythonDebugConfigurationService implements IDynamicDebugConf
if (fastApiPath) {
fastApiPath = replaceAll(path.relative(folder.uri.fsPath, fastApiPath), path.sep, '.').replace('.py', '');
providers.push({
name: 'Python: FastAPI',
name: 'Debugpy: FastAPI',
type: DebuggerTypeName,
request: 'launch',
module: 'uvicorn',
Expand Down

0 comments on commit d94f68b

Please sign in to comment.