No changes made to .gitignore and .vscode/launch.json files.

This commit is contained in:
ilia 2025-09-03 13:37:09 -04:00
parent 2265649669
commit d28005e541
2 changed files with 13 additions and 13 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
.history .history
*.png *.png

24
.vscode/launch.json vendored
View File

@ -1,13 +1,13 @@
{ {
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{"name":"Python Debugger: Current File","type":"debugpy","request":"launch","program":"${file}","console":"integratedTerminal"}, {"name":"Python Debugger: Current File","type":"debugpy","request":"launch","program":"${file}","console":"integratedTerminal"},
{ {
"name": "Python: Current File", "name": "Python: Current File",
"type": "python", "type": "python",
"request": "launch", "request": "launch",
"program": "${file}", "program": "${file}",
"console": "integratedTerminal" "console": "integratedTerminal"
} }
] ]
} }