We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02e1694 commit d033b8bCopy full SHA for d033b8b
1 file changed
src/features/envCommands.ts
@@ -434,12 +434,7 @@ export async function addPythonProjectCommand(
434
quickCreate: true,
435
};
436
}
437
- const result = await existingProjectsCreator.create(options);
438
-
439
- // If the creator returns a Uri (like a script file), open it in the editor
440
- if (result instanceof Uri) {
441
- await showTextDocument(result);
442
- }
+ await existingProjectsCreator.create(options);
443
return;
444
} catch (ex) {
445
if (ex === QuickInputButtons.Back) {
@@ -458,7 +453,7 @@ export async function addPythonProjectCommand(
458
453
459
454
try {
460
455
const result = await creator.create(options);
461
456
+
462
457
// If the creator returns a Uri (like a script file), open it in the editor
463
if (result instanceof Uri) {
464
await showTextDocument(result);
0 commit comments