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
163163 }
164164
165165 public async resolve ( executable : string ) : Promise < NativeEnvInfo > {
166+ await this . configure ( ) ;
166167 const environment = await this . connection . sendRequest < NativeEnvInfo > ( 'resolve' , {
167168 executable,
168169 } ) ;
@@ -438,10 +439,6 @@ class NativeGlobalPythonFinderImpl extends DisposableBase implements NativePytho
438439 async getCondaInfo ( ) : Promise < NativeCondaInfo > {
439440 return this . connection . sendRequest < NativeCondaInfo > ( 'condaInfo' ) ;
440441 }
441-
442- public async find ( searchPath : string ) : Promise < NativeEnvInfo [ ] > {
443- return this . connection . sendRequest < NativeEnvInfo [ ] > ( 'find' , { searchPath } ) ;
444- }
445442}
446443
447444type ConfigurationOptions = {
You can’t perform that action at this time.
0 commit comments