diff --git a/project/.gitignore b/project/.gitignore index ae47b28..588e34e 100644 --- a/project/.gitignore +++ b/project/.gitignore @@ -1,4 +1,5 @@ .idea/ +.vscode/ __pycache__/ *.py[cod] dist/ diff --git a/project/config/vscode/launch.json b/project/config/vscode/launch.json index 2e0d651..d056cce 100644 --- a/project/config/vscode/launch.json +++ b/project/config/vscode/launch.json @@ -3,7 +3,7 @@ "configurations": [ { "name": "python (current file)", - "type": "python", + "type": "debugpy", "request": "launch", "program": "${file}", "console": "integratedTerminal", @@ -11,7 +11,7 @@ }, { "name": "test", - "type": "python", + "type": "debugpy", "request": "launch", "module": "pytest", "justMyCode": false,