From bcae0cf441c81a6715425cfac98304b6ad00379f Mon Sep 17 00:00:00 2001 From: gtsiam Date: Tue, 17 Sep 2024 18:42:10 +0300 Subject: [PATCH] Fix vscode launch configuration (#13795) --- .vscode/launch.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index fe709c92d..5c858267d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,10 +3,9 @@ "configurations": [ { "name": "Python: Launch Frigate", - "type": "python", + "type": "debugpy", "request": "launch", - "module": "frigate", - "justMyCode": true + "module": "frigate" } ] }