From fb4473a1a845f25450650258e5c5f70063d9057e Mon Sep 17 00:00:00 2001 From: Alexandru Pisarenco Date: Sat, 9 Jan 2021 03:05:52 +0100 Subject: [PATCH] Add launch.json for main.py for easy debug --- .vscode/launch.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index dbd9e23..beeb01b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,6 +10,13 @@ "request": "launch", "program": "${file}", "console": "integratedTerminal" + }, + { + "name": "Python: Main", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/main.py", + "console": "integratedTerminal" } ] } \ No newline at end of file