diff --git a/src/client/pythonEnvironments/creation/createEnvApi.ts b/src/client/pythonEnvironments/creation/createEnvApi.ts index ab0f0db317c3..b5df9232dd4b 100644 --- a/src/client/pythonEnvironments/creation/createEnvApi.ts +++ b/src/client/pythonEnvironments/creation/createEnvApi.ts @@ -72,7 +72,10 @@ export function registerCreateEnvironmentFeatures( ): Promise => { if (useEnvExtension()) { try { - const result = await executeCommand('python-envs.createAny'); + const result = await executeCommand( + 'python-envs.createAny', + options, + ); if (result) { return { path: result.environmentPath.path }; }