Getting pyright to work with uv
To get pyright to look at the correct package installation folder (using pyproject.toml, like uv does), add the following to the pyproject.toml.
[tool.pyright]
venv = ".venv"
venvPath = "."
To get pyright to look at the correct package installation folder (using pyproject.toml, like uv does), add the following to the pyproject.toml.
[tool.pyright]
venv = ".venv"
venvPath = "."