Skip to content

Commit

Permalink
Remove args from .vscode/launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
alichtman committed Jan 15, 2024
1 parent 53377f3 commit 6304fb5
Showing 1 changed file with 15 additions and 18 deletions.
33 changes: 15 additions & 18 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Module",
"type": "python",
"request": "launch",
"module": "jrnl",
"justMyCode": true,
"args": [
"--export",
"heatmap",
"--debug"]
}
]
}
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Module",
"type": "python",
"request": "launch",
"module": "jrnl",
"justMyCode": true,
"args": []
}
]
}

0 comments on commit 6304fb5

Please sign in to comment.