From 6f8572b3f15868e697a0cf00482f944590e017d1 Mon Sep 17 00:00:00 2001 From: MystyPy Date: Fri, 12 Apr 2024 23:54:25 +1000 Subject: [PATCH] Exclude examples from pyright --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 35e5508..4a218eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -97,7 +97,7 @@ skip-magic-trailing-comma = false line-ending = "auto" [tool.pyright] -exclude = ["venv"] +exclude = ["venv", "examples/"] useLibraryCodeForTypes = true typeCheckingMode = "strict" reportImportCycles = false