File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
src/client/pythonEnvironments/base/locators/common Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ class NativeGlobalPythonFinderImpl extends DisposableBase implements NativePytho
163
163
}
164
164
165
165
public async resolve ( executable : string ) : Promise < NativeEnvInfo > {
166
+ await this . configure ( ) ;
166
167
const environment = await this . connection . sendRequest < NativeEnvInfo > ( 'resolve' , {
167
168
executable,
168
169
} ) ;
@@ -438,10 +439,6 @@ class NativeGlobalPythonFinderImpl extends DisposableBase implements NativePytho
438
439
async getCondaInfo ( ) : Promise < NativeCondaInfo > {
439
440
return this . connection . sendRequest < NativeCondaInfo > ( 'condaInfo' ) ;
440
441
}
441
-
442
- public async find ( searchPath : string ) : Promise < NativeEnvInfo [ ] > {
443
- return this . connection . sendRequest < NativeEnvInfo [ ] > ( 'find' , { searchPath } ) ;
444
- }
445
442
}
446
443
447
444
type ConfigurationOptions = {
You can’t perform that action at this time.
0 commit comments