From 34437880138d44fb5de3b10a7c65079a2831a89f Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Wed, 9 Oct 2024 14:46:54 -0700 Subject: [PATCH] misc: Add "src/python" to vscode Python Analysis Paths (#1647) This allows vscode to resolve python imported from "src/python". Warnings regarding these imports are numerous and the issue stops users of vscode to utilizubg features like navigating the codebase though "Go to Definition" queries on imported classes/functions. --- .vscode/settings.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..8f97d85829 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "python.analysis.extraPaths": [ + "src/python" + ] +}