File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,6 @@ export async function pickCreator(creators: PythonProjectCreator[]): Promise<Pyt
137137 // First level menu
138138 const autoFindCreator = creators . find ( ( c ) => c . name === 'autoProjects' ) ;
139139 const existingProjectsCreator = creators . find ( ( c ) => c . name === 'existingProjects' ) ;
140- const otherCreators = creators . filter ( ( c ) => c . name !== 'autoProjects' && c . name !== 'existingProjects' ) ;
141140
142141 const items : QuickPickItem [ ] = [
143142 {
@@ -219,4 +218,4 @@ export async function newProjectSelection(creators: PythonProjectCreator[]): Pro
219218 await commands . executeCommand ( 'python-envs.addPythonProject' ) ;
220219 }
221220 }
222- }
221+ }
Original file line number Diff line number Diff line change @@ -160,4 +160,6 @@ export class NewPackageProject implements PythonProjectCreator {
160160 return Uri . file ( projectDestinationFolder ) ;
161161 }
162162 }
163+ return undefined ;
164+ }
163165}
You can’t perform that action at this time.
0 commit comments