Use absolute path for venv interpreter in workspace settings

Relative paths are not resolved by VS Code for python.defaultInterpreterPath.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-25 12:29:49 -08:00
parent 612d8c11e2
commit 19c599c952

View File

@@ -1,5 +1,5 @@
{ {
"python.defaultInterpreterPath": ".venv/bin/python3", "python.defaultInterpreterPath": "/Users/dpadams/Repos/texas-inspection-expenses/.venv/bin/python3",
"python.terminal.activateEnvironment": true, "python.terminal.activateEnvironment": true,
"jupyter.notebookFileRoot": "${workspaceFolder}" "jupyter.notebookFileRoot": "${workspaceFolder}"
} }