From 8e113bbca25369f73df0e155157714a4decbdddd Mon Sep 17 00:00:00 2001 From: zeptofine Date: Fri, 3 Nov 2023 13:49:16 -0400 Subject: [PATCH] add Main module to debug scripts --- .vscode/launch.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 7a99c70..302d951 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,14 @@ "version": "0.2.0", "configurations": [ { - "name": "Python: Module", + "name": "Main module", + "type": "python", + "request": "launch", + "module": "imdataset_creator", + "justMyCode": true + }, + { + "name": "GUI module", "type": "python", "request": "launch", "module": "imdataset_creator.gui",