We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 806e5e7 commit fadaa4eCopy full SHA for fadaa4e
1 file changed
src/features/envCommands.ts
@@ -3,7 +3,6 @@ import {
3
CreateEnvironmentOptions,
4
PythonEnvironment,
5
PythonEnvironmentApi,
6
- PythonProject,
7
PythonProjectCreator,
8
PythonProjectCreatorOptions,
9
} from '../api';
@@ -377,10 +376,8 @@ export async function addPythonProjectCommand(
377
376
return;
378
}
379
380
-
381
- let results: PythonProject | PythonProject[] | undefined;
382
try {
383
- results = await creator.create(options);
+ const results = await creator.create(options);
384
if (results === undefined) {
385
386
0 commit comments