Skip to content

Commit b2bb14d

Browse files
committed
refactor: make VSCodePythonEnvironment.dispose async
1 parent 8213b1b commit b2bb14d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/manifest/vscodePythonEnvironment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class VSCodePythonEnvironment implements PythonEnvironment {
2525
private dbtTerminal: DBTTerminal,
2626
) {}
2727

28-
dispose() {
28+
async dispose(): Promise<void> {
2929
while (this.disposables.length) {
3030
const x = this.disposables.pop();
3131
if (x) {

0 commit comments

Comments
 (0)