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 58f462c commit 7159a4bCopy full SHA for 7159a4b
src/modelVisualizer.ts
@@ -230,9 +230,9 @@ export class ModelVisualizer implements vscode.CustomEditorProvider<ModelFile> {
230
return 'http://' + str(addr) + ':' + str(port)
231
`;
232
// install deps while extension init
233
- ModelVisualizer.python`install_deps()`
234
- .then((res) => { console.log(res); })
235
- .catch((err) => { console.log(err); });
+ ModelVisualizer.python`install_deps()`.then((res) => {
+ console.log(res);
+ });
236
237
}
238
0 commit comments