Skip to content

Commit

Permalink
chore: add a launch config for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed May 3, 2024
1 parent f17cf2a commit 553977b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// 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 Debugger: Module",
"type": "debugpy",
"request": "launch",
"module": "sweeper",
"args": [
"sweep",
"--workspace",
"C:\\temp\\locators.gdb"
],
"cwd": "${workspaceFolder}"
}
]
}

0 comments on commit 553977b

Please sign in to comment.