Skip to content

Commit 79b8988

Browse files
committed
vscode/launch: Replace python with debugpy.
VSCode says that python is deprecated and to use debugpy instead.
1 parent 87fe36a commit 79b8988

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.vscode/launch.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"configurations": [
77
{
88
"name": "Download and Run",
9-
"type": "python",
9+
"type": "debugpy",
1010
"request": "launch",
1111
"module": "pybricksdev",
1212
"console": "integratedTerminal",
@@ -18,7 +18,7 @@
1818
},
1919
{
2020
"name": "Powered Up Tests",
21-
"type": "python",
21+
"type": "debugpy",
2222
"request": "launch",
2323
"program": "${workspaceFolder}/tests/pup/run_all.py",
2424
"cwd": "${workspaceFolder}/tests/pup",
@@ -27,15 +27,15 @@
2727
},
2828
{
2929
"name": "Motor Test",
30-
"type": "python",
30+
"type": "debugpy",
3131
"request": "launch",
3232
"program": "${workspaceFolder}/tests/motors/run_test.py",
3333
"args": ["${file}", "--show"],
3434
"console": "integratedTerminal"
3535
},
3636
{
3737
"name": "Run via USB REPL",
38-
"type": "python",
38+
"type": "debugpy",
3939
"request": "launch",
4040
"module": "pybricksdev",
4141
"console": "integratedTerminal",
@@ -47,7 +47,7 @@
4747
},
4848
{
4949
"name": "Python: Current File",
50-
"type": "python",
50+
"type": "debugpy",
5151
"request": "launch",
5252
"program": "${file}",
5353
"args": [],

0 commit comments

Comments
 (0)