Skip to content

Commit 3085488

Browse files
committed
fix return
1 parent fadaa4e commit 3085488

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/features/envCommands.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -377,10 +377,7 @@ export async function addPythonProjectCommand(
377377
}
378378

379379
try {
380-
const results = await creator.create(options);
381-
if (results === undefined) {
382-
return;
383-
}
380+
await creator.create(options);
384381
} catch (ex) {
385382
if (ex === QuickInputButtons.Back) {
386383
return addPythonProjectCommand(resource, wm, em, pc);

0 commit comments

Comments
 (0)