From d44e3c6d8d24574674f56a2c85b74536ed8d7e1e Mon Sep 17 00:00:00 2001 From: Omer Tuchfeld Date: Fri, 11 Jul 2025 11:07:03 +0200 Subject: [PATCH] Add `pyright` configuration file `pyright` can be used as a language server for Python. Tell `pyright` where to find the source files, so it can resolve imports correctly. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 26b79039..0174c5d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ exclude = [ # might need to be rewritten down the line. "src/auth/k8s.py", ] +extraPaths = ["./src"] [tool.pdm] distribution = true