From fb2027577570a36262a83e096c5d6be5399e56a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Sun, 3 Sep 2023 16:02:00 +0000 Subject: [PATCH] fix debugger warning --- api/.vscode/launch.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/.vscode/launch.json b/api/.vscode/launch.json index d650729..ac909b4 100644 --- a/api/.vscode/launch.json +++ b/api/.vscode/launch.json @@ -9,6 +9,9 @@ "type": "python", "request": "launch", "module": "advent22_api.main", + "pythonArgs": [ + "-Xfrozen_modules=off", + ], "justMyCode": true } ]