Skip to content
This repository was archived by the owner on Oct 23, 2025. It is now read-only.

Commit 867bdba

Browse files
authored
fix async return for runInDedicatedTerminal API (#643)
1 parent 06b9574 commit 867bdba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/features/pythonApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ class PythonEnvironmentApiImpl implements PythonEnvironmentApi {
318318
environment,
319319
);
320320
await runInTerminal(environment, terminal, options);
321-
return terminal;
321+
return Promise.resolve(terminal);
322322
}
323323
runAsTask(environment: PythonEnvironment, options: PythonTaskExecutionOptions): Promise<TaskExecution> {
324324
return runAsTask(environment, options);

0 commit comments

Comments
 (0)