From 229781a06af99de7e32016b02149ba53a9b6fa14 Mon Sep 17 00:00:00 2001 From: Christian Tabedzki <35670232+tabedzki@users.noreply.github.com> Date: Wed, 8 Jul 2026 10:41:51 -0400 Subject: [PATCH] chore: point pyright at the project .venv Add [tool.pyright] venvPath/venv so pyright resolves imports against the project's .venv, matching the installed dependencies instead of a global environment. Assisted-by: ClaudeCode:claude-opus-4.8 --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 041e7fc..6bc57d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,6 +68,10 @@ docs = [ "sphinx-design", ] +[tool.pyright] +venvPath = "." +venv = ".venv" + [dependency-groups] dev = [ "furo>=2025.12.19",