Fix: Reload was not working due to changes in how Signals and inputs work. On reload, the input does not change so the resource does not fetch new data.

This commit is contained in:
2026-08-31 17:31:48 +00:00
parent 985993f273
commit 8c189cac21
51 changed files with 176 additions and 139 deletions
+14 -3
View File
@@ -1,13 +1,24 @@
{
// Use WSL paths + Poetry venv interpreter
"python.defaultInterpreterPath": "${workspaceFolder}/brewman/.venv/bin/python",
"python.defaultInterpreterPath": "/brewman/.venv/bin/python",
"python.terminal.useEnvFile": true,
"python.venvFolders": [
"barker/.venv",
"frank/.venv",
".venv"
],
"python.venvPath": "${workspaceFolder}/barker",
"python.terminal.activateEnvironment": true,
// Quality-of-life
// Quality-of-life
/* --- Pylance: keep IntelliSense, disable type checking --- */
// "python.analysis.typeCheckingMode": "off",
// "python.analysis.diagnosticMode": "openFilesOnly",
"python.analysis.typeCheckingMode": "basic",
"python.analysis.extraPaths": [
"${workspaceFolder}/brewman",
"./brewman"
],
"python.autoComplete.extraPaths": [
"${workspaceFolder}/brewman",
"./brewman"
],
// Ruff (you have ruff installed via poetry)