We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 690e150 commit d354864Copy full SHA for d354864
src/extension.ts
@@ -210,6 +210,8 @@ export async function activate(context: ExtensionContext): Promise<PythonEnviron
210
const manager = envManagers.getEnvironmentManager(uri);
211
if (manager) {
212
manager.set(uri, undefined);
213
+ } else {
214
+ traceError(`No environment manager found for ${uri.fsPath}`);
215
}
216
217
await removePythonProject(item, projectManager);
0 commit comments