From 193fe02b7d7f57a1fae0c3838cea48463d118c81 Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Wed, 9 Jul 2025 22:04:38 -0400 Subject: [PATCH] Pyright diagnostics --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index aa1116174..54f0c2256 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -158,6 +158,16 @@ project-name = "Temporal Python" sidebar-expand-depth = 2 [tool.pyright] +reportUnknownVariableType = "none" +reportUnknownParameterType = "none" +reportUnusedCallResult = "none" +reportImplicitStringConcatenation = "none" +reportPrivateUsage = "none" +reportExplicitAny = "none" +reportMissingTypeArgument = "none" +reportAny = "none" +enableTypeIgnoreComments = true + include = ["temporalio", "tests"] exclude = [ "temporalio/api",