chore: change way program is launched

This commit is contained in:
2021-06-08 11:13:57 -04:00
parent c1fe951b15
commit a269a532a0

4
.vscode/launch.json vendored
View File

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