Skip to content

Commit

Permalink
client: wait longer for installation
Browse files Browse the repository at this point in the history
This installs from pypi so it can take time
  • Loading branch information
perrinjerome committed Mar 27, 2022
1 parent 0f61364 commit ae92e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function isPythonVersionCompatible(python: string): boolean {
}

async function shortDelay() {
return new Promise((resolve) => setTimeout(resolve, 1000));
return new Promise((resolve) => setTimeout(resolve, 3000));
}

export async function activate() {
Expand Down

0 comments on commit ae92e31

Please sign in to comment.