Skip to content

Commit 87e871b

Browse files
committed
added __main__ debug config
1 parent 68fa9ac commit 87e871b

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.vscode/launch.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
52
"version": "0.2.0",
63
"configurations": [
74
{
@@ -11,6 +8,21 @@
118
"program": "${file}",
129
"console": "integratedTerminal",
1310
"justMyCode": false
11+
},
12+
{
13+
"name": "Python: Module",
14+
"type": "python",
15+
"request": "launch",
16+
"module": "ffmpeg_downloader",
17+
"args": [
18+
"uninstall"
19+
],
20+
"console": "integratedTerminal",
21+
"justMyCode": true,
22+
"cwd": "${workspaceFolder}",
23+
"env": {
24+
"PYTHONPATH": "${workspaceRoot}"
25+
}
1426
}
1527
]
1628
}

0 commit comments

Comments
 (0)