This commit is contained in:
Rob Anderson 2023-08-14 11:13:52 -07:00
Родитель 66405d392a
Коммит 9b5918922a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 82199D088B4B109E
1 изменённых файлов: 16 добавлений и 0 удалений

16
.vscode/launch.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}