From 566da81a2051283566732466cb3d05c7be2ab925 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Sun, 3 Sep 2023 20:41:20 +0000 Subject: [PATCH] suppress frozen modules warning - Xfrozen_modules=off **is** passed to process --- api/.vscode/launch.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/.vscode/launch.json b/api/.vscode/launch.json index ac909b4..88c3bb3 100644 --- a/api/.vscode/launch.json +++ b/api/.vscode/launch.json @@ -12,7 +12,10 @@ "pythonArgs": [ "-Xfrozen_modules=off", ], - "justMyCode": true + "env": { + "PYDEVD_DISABLE_FILE_VALIDATION": "1", + }, + "justMyCode": true, } ] } \ No newline at end of file