We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68fa9ac commit 87e871bCopy full SHA for 87e871b
.vscode/launch.json
@@ -1,7 +1,4 @@
1
{
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
5
"version": "0.2.0",
6
"configurations": [
7
@@ -11,6 +8,21 @@
11
8
"program": "${file}",
12
9
"console": "integratedTerminal",
13
10
"justMyCode": false
+ },
+ {
+ "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
+ }
26
}
27
]
28
0 commit comments