We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd1aed7 commit d2072b0Copy full SHA for d2072b0
src/extension.ts
@@ -88,7 +88,7 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
88
const projectCreators: ProjectCreators = new ProjectCreatorsImpl();
89
context.subscriptions.push(
90
projectCreators,
91
- projectCreators.registerPythonProjectCreator(new ExistingProjects()),
+ projectCreators.registerPythonProjectCreator(new ExistingProjects(projectManager)),
92
projectCreators.registerPythonProjectCreator(new AutoFindProjects(projectManager)),
93
);
94
0 commit comments