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.
This commit is contained in:
Bobby R. Bruce
2024-10-09 14:46:54 -07:00
committed by GitHub
parent 965da9ea79
commit 3443788013

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"python.analysis.extraPaths": [
"src/python"
]
}