We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4269ce commit 344b45eCopy full SHA for 344b45e
1 file changed
src/programflow-visualization/main.ts
@@ -19,7 +19,7 @@ export function getProgFlowVizCallback(context: vscode.ExtensionContext, outChan
19
vscode.window.showWarningMessage('Not a Python file');
20
return;
21
}
22
- vscode.window.activeTextEditor?.document.save();
+ await vscode.window.activeTextEditor?.document.save();
23
24
const content = await FileHandler.getContentOf(file);
25
const fileHash = Md5.hashStr(content);
0 commit comments