File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ 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' ) ;
140141
141142 const items : QuickPickItem [ ] = [
142143 {
@@ -218,4 +219,4 @@ export async function newProjectSelection(creators: PythonProjectCreator[]): Pro
218219 await commands . executeCommand ( 'python-envs.addPythonProject' ) ;
219220 }
220221 }
221- }
222+ }
Original file line number Diff line number Diff line change @@ -160,5 +160,4 @@ export class NewPackageProject implements PythonProjectCreator {
160160 return Uri . file ( projectDestinationFolder ) ;
161161 }
162162 }
163- }
164163}
You can’t perform that action at this time.
0 commit comments