From 8ce74e598d844d0b51aeb29983a2d7f114447c50 Mon Sep 17 00:00:00 2001 From: Khole Date: Wed, 14 Apr 2021 18:26:37 +0100 Subject: [PATCH] Allow debugging of integration dependancies (#49211) --- .vscode/launch.json | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 3d967b25c15..e8bf893e0c9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,11 +9,8 @@ "type": "python", "request": "launch", "module": "homeassistant", - "args": [ - "--debug", - "-c", - "config" - ] + "justMyCode": false, + "args": ["--debug", "-c", "config"] }, { // Debug by attaching to local Home Asistant server using Remote Python Debugger. @@ -28,7 +25,7 @@ "localRoot": "${workspaceFolder}", "remoteRoot": "." } - ], + ] }, { // Debug by attaching to remote Home Asistant server using Remote Python Debugger. @@ -43,7 +40,7 @@ "localRoot": "${workspaceFolder}", "remoteRoot": "/usr/src/homeassistant" } - ], + ] } ] -} \ No newline at end of file +}