We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b933d commit a5009cdCopy full SHA for a5009cd
src/client/terminals/envCollectionActivation/service.ts
@@ -99,7 +99,6 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
99
try {
100
if (!inTerminalEnvVarExperiment(this.experimentService)) {
101
this.context.environmentVariableCollection.clear();
102
- await registerPythonStartup(this.context);
103
await this.handleMicroVenv(resource);
104
if (!this.registeredOnce) {
105
this.interpreterService.onDidChangeInterpreter(
@@ -111,6 +110,7 @@ export class TerminalEnvVarCollectionService implements IExtensionActivationServ
111
110
);
112
this.registeredOnce = true;
113
}
+ await registerPythonStartup(this.context);
114
return;
115
116
0 commit comments