From b492a3db645b3e68e4d029b304a0db864a10c4f1 Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Tue, 20 Aug 2024 16:18:38 +0200 Subject: [PATCH] build: Add vscode setting for paths to look at for imports as otherwise it seems to fail to detect some of the libraries that are part of the project --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index cb1ac2e..12a6af2 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,7 @@ { + "python.analysis.extraPaths": [ + "./reaper" + ], "flake8.args": [ "--ignore=E501,E402,W503" ],