From 816582f61a551dbc2efdfabb7bfdba711f5743cb Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Sat, 9 Aug 2025 15:55:57 +0200 Subject: [PATCH] chore(.vscode/launch.json): fix formatting errors --- .vscode/launch.json | 42 ++++++++++++++++++------------------------ 1 file changed, 18 insertions(+), 24 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 2b2ce62..f55f6bd 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,25 +1,19 @@ { - // 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": "Launch Flask", - "type": "debugpy", - "request": "launch", - "module": "flask", - "env": { - "FLASK_APP": "judas_server/web/web_server.py", - }, - "args": [ - "run", - "--host", - "0.0.0.0", - - ], - "console": "internalConsole", - "justMyCode": true, - } - ] -} \ No newline at end of file + "version": "0.2.0", + "configurations": [ + { + "name": "Launch Flask", + "type": "debugpy", + "request": "launch", + "module": "flask", + "env": { + "FLASK_APP": "judas_server/web/web_server.py" + }, + "args": [ + "run", + "--host", + "0.0.0.0" + ] + } + ] +}