We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37e2d1b commit bca4a57Copy full SHA for bca4a57
1 file changed
.vscode/launch.json
@@ -14,7 +14,6 @@
14
"python": "${config:python.defaultInterpreterPath}",
15
"justMyCode": true,
16
"env": {
17
- // "DEBUG": "1",
18
"QT_COLOR_MODE": "light",
19
}
20
},
@@ -27,14 +26,21 @@
27
26
"envFile": "${workspaceFolder}/.env",
28
29
"justMyCode": false,
+ },
30
+ {
31
+ "name": "Run current file (unattended)",
32
+ "type": "python",
33
+ "request": "launch",
34
+ "program": "${file}",
35
+ "console": "integratedTerminal",
36
+ "envFile": "${workspaceFolder}/.env",
37
+ "python": "${config:python.defaultInterpreterPath}",
38
+ "justMyCode": false,
39
"args": [
40
"--unattended",
41
],
42
43
"GUIDATA_PARSE_ARGS": "1",
- // "LANG": "fr",
- "QT_COLOR_MODE": "light",
44
45
46
]
0 commit comments