From ae4cfa3a6d79e0c3e96ced1b898d31b6ff53cde1 Mon Sep 17 00:00:00 2001 From: Thomas Klaehn Date: Fri, 22 Nov 2019 11:39:20 +0100 Subject: [PATCH] VScode: add environment for debugging --- .vscode/launch.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index ce9a0d8..8d8706a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,7 +1,4 @@ { - // 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": [ { @@ -13,7 +10,10 @@ "args": [ "/home/tkl/Nextcloud/Bicycle", "${workspaceFolder}" - ] + ], + "env": { + "PYTHONPATH": "${workspaceFolder}" + } } ] -} \ No newline at end of file +}