Skip to content

Commit bd4cde8

Browse files
authored
Merge branch 'create-project-branch' into new-package
2 parents 1c04a7a + a60b2b1 commit bd4cde8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/common/pickers/managers.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
}

src/features/creators/newPackageProject.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,5 +160,4 @@ export class NewPackageProject implements PythonProjectCreator {
160160
return Uri.file(projectDestinationFolder);
161161
}
162162
}
163-
}
164163
}

0 commit comments

Comments
 (0)