File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/client/pythonEnvironments/base Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 4
4
import { cloneDeep } from 'lodash' ;
5
5
import { getGlobalPersistentStore , IPersistentStore } from '../common/externalDependencies' ;
6
6
import { PythonEnvInfo } from './info' ;
7
- import { areSameEnvironment } from './info/env' ;
7
+ import { areSameEnv } from './info/env' ;
8
8
9
9
/**
10
10
* Represents the environment info cache to be used by the cache locator.
@@ -81,7 +81,7 @@ export class PythonEnvInfoCache implements IEnvsCache {
81
81
}
82
82
83
83
public filterEnvs ( env : PythonEnvInfo | string ) : PythonEnvInfo [ ] | undefined {
84
- const result = this . envsList ?. filter ( ( info ) => areSameEnvironment ( info , env ) ) ;
84
+ const result = this . envsList ?. filter ( ( info ) => areSameEnv ( info , env ) ) ;
85
85
86
86
if ( result ) {
87
87
return cloneDeep ( result ) ;
You can’t perform that action at this time.
0 commit comments