Remove args from .vscode/launch.json

This commit is contained in:
Aaron Lichtman 2024-01-15 15:31:25 -08:00
parent 53377f3206
commit 6304fb585d
No known key found for this signature in database
GPG key ID: D046D019DC745EDA

33
.vscode/launch.json vendored
View file

@ -1,19 +1,16 @@
{ {
// Use IntelliSense to learn about possible attributes. // Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes. // Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Python: Module", "name": "Python: Module",
"type": "python", "type": "python",
"request": "launch", "request": "launch",
"module": "jrnl", "module": "jrnl",
"justMyCode": true, "justMyCode": true,
"args": [ "args": []
"--export", }
"heatmap", ]
"--debug"] }
}
]
}