We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62eca73 commit 413b01dCopy full SHA for 413b01d
src/Device.js
@@ -403,8 +403,8 @@ class Device {
403
if (!this.config.rootPath) this.config = { ...this.config, rootPath: await this.getRootPath() };
404
await this.updatePymakrConf();
405
this.state.stale = false;
406
- this.busy.set(false);
407
- resolve();
+ // busy could be truish as vscode could be trying to access a file
+ this.busy.when(false).then(resolve);
408
}
409
});
410
0 commit comments