Skip to content

Commit 9080a9b

Browse files
committed
fix errors from merging
1 parent bd4cde8 commit 9080a9b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/common/pickers/managers.ts

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

src/features/creators/newPackageProject.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,6 @@ export class NewPackageProject implements PythonProjectCreator {
160160
return Uri.file(projectDestinationFolder);
161161
}
162162
}
163+
return undefined;
164+
}
163165
}

0 commit comments

Comments
 (0)