From 46757aedd2e3b094ca9838c61840c2598abff601 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Mon, 21 Apr 2025 21:50:07 -0700 Subject: [PATCH] fix: ensure options are passed to python envs --- src/client/pythonEnvironments/creation/createEnvApi.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 }; }