Files
playlist_dl/.vscode/tasks.json
T

16 lines
249 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run main.py (venv)",
"type": "shell",
"command": ".venv\\Scripts\\python.exe",
"args": [
"main.py"
],
"isBackground": false,
"problemMatcher": [],
"group": "build"
}
]
}