We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43285f6 commit 5a33fc1Copy full SHA for 5a33fc1
src/client/pythonEnvironments/creation/createEnvApi.ts
@@ -72,7 +72,10 @@ export function registerCreateEnvironmentFeatures(
72
): Promise<CreateEnvironmentResult | undefined> => {
73
if (useEnvExtension()) {
74
try {
75
- const result = await executeCommand<PythonEnvironment | undefined>('python-envs.createAny');
+ const result = await executeCommand<PythonEnvironment | undefined>(
76
+ 'python-envs.createAny',
77
+ options,
78
+ );
79
if (result) {
80
return { path: result.environmentPath.path };
81
}
0 commit comments