@@ -106,7 +106,7 @@ type PythonApiForJupyterExtension = {
106106 interpreter ?: PythonEnvironment ,
107107 allowExceptions ?: boolean ,
108108 ) : Promise < NodeJS . ProcessEnv | undefined > ;
109- isWindowsStoreInterpreter ( pythonPath : string ) : Promise < boolean > ;
109+ isMicrosoftStoreInterpreter ( pythonPath : string ) : Promise < boolean > ;
110110 suggestionToQuickPickItem ( suggestion : PythonEnvironment , workspaceUri ?: Uri | undefined ) : IInterpreterQuickPickItem ;
111111 getKnownSuggestions ( resource : Resource ) : IInterpreterQuickPickItem [ ] ;
112112 /**
@@ -234,8 +234,8 @@ export class JupyterExtensionIntegration {
234234 interpreter ?: PythonEnvironment ,
235235 allowExceptions ?: boolean ,
236236 ) => this . envActivation . getActivatedEnvironmentVariables ( resource , interpreter , allowExceptions ) ,
237- isWindowsStoreInterpreter : async ( pythonPath : string ) : Promise < boolean > =>
238- this . pyenvs . isWindowsStoreInterpreter ( pythonPath ) ,
237+ isMicrosoftStoreInterpreter : async ( pythonPath : string ) : Promise < boolean > =>
238+ this . pyenvs . isMicrosoftStoreInterpreter ( pythonPath ) ,
239239 getSuggestions : async ( resource : Resource ) : Promise < IInterpreterQuickPickItem [ ] > =>
240240 this . interpreterSelector . getAllSuggestions ( resource ) ,
241241 getKnownSuggestions : ( resource : Resource ) : IInterpreterQuickPickItem [ ] =>
0 commit comments