From 85423d6a62d33d4721c8ec84ad4f44f37bc607fa Mon Sep 17 00:00:00 2001 From: William Valentin Date: Mon, 28 Jul 2025 14:23:49 -0700 Subject: [PATCH] Fix VSCode settings by adding newline at end of file and ensuring Python interpreter path is correctly set --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index a335541..44f1013 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -36,5 +36,6 @@ "editor.formatOnSave": true, "diffEditor.codeLens": true, "github.copilot.nextEditSuggestions.enabled": true, - "github.copilot.selectedCompletionModel": "" + "github.copilot.selectedCompletionModel": "", + "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python" }