chore: change way program is launched

This commit is contained in:
Giovani Rodriguez
2021-06-08 11:13:57 -04:00
parent 0ce228163a
commit 4ddb9f70cd

4
.vscode/launch.json vendored
View File

@@ -5,10 +5,10 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "Python: Current File", "name": "Python: Run main.py",
"type": "python", "type": "python",
"request": "launch", "request": "launch",
"program": "${file}", "program": "main.py",
"console": "integratedTerminal" "console": "integratedTerminal"
} }
] ]