* Sets the current Python environment within the specified scope. * @param scope - The scope within which to set the environment. * @param environment - The Python environment to set. If undefined, the environment is unset. * @returns A promise that resolves when the environment is se
(scope: SetEnvironmentScope, environment?: PythonEnvironment)
| 419 | * @returns A promise that resolves when the environment is set. |
| 420 | */ |
| 421 | set(scope: SetEnvironmentScope, environment?: PythonEnvironment): Promise<void>; |
| 422 | |
| 423 | /** |
| 424 | * Retrieves the current Python environment within the specified scope. |
no outgoing calls