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 86219d1 commit c880947Copy full SHA for c880947
src/client/pythonEnvironments/base/info/environmentInfoService.ts
@@ -106,13 +106,6 @@ class EnvironmentInfoService implements IEnvironmentInfoService {
106
}
107
108
const deferred = createDeferred<InterpreterInformation>();
109
- const info = EnvironmentInfoService.getInterpreterInfo(env);
110
- if (info !== undefined) {
111
- this.cache.set(normCasePath(interpreterPath), deferred);
112
- deferred.resolve(info);
113
- return info;
114
- }
115
-
116
this.cache.set(normCasePath(interpreterPath), deferred);
117
this._getEnvironmentInfo(env, priority)
118
.then((r) => {
0 commit comments