From 19c599c952975bf986e3160b2a255d78837e8c2e Mon Sep 17 00:00:00 2001 From: dadams Date: Wed, 25 Feb 2026 12:29:49 -0800 Subject: [PATCH] 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 --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index bdcef8c..d035305 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "python.defaultInterpreterPath": ".venv/bin/python3", + "python.defaultInterpreterPath": "/Users/dpadams/Repos/texas-inspection-expenses/.venv/bin/python3", "python.terminal.activateEnvironment": true, "jupyter.notebookFileRoot": "${workspaceFolder}" }