There was an error while loading. Please reload this page.
1 parent c37f9a5 commit 459a930Copy full SHA for 459a930
src/client/extension.ts
@@ -65,7 +65,8 @@ export async function activate(context: vscode.ExtensionContext) {
65
sortImports.activate(context, formatOutChannel);
66
const interpreterManager = new InterpreterManager();
67
await interpreterManager.autoSetInterpreter();
68
- await interpreterManager.refresh();
+ // tslint:disable-next-line:no-floating-promises
69
+ interpreterManager.refresh();
70
context.subscriptions.push(interpreterManager);
71
const interpreterVersionService = new InterpreterVersionService();
72
context.subscriptions.push(new SetInterpreterProvider(interpreterManager, interpreterVersionService));
0 commit comments