From 34937b72f2b5257a1833ed80af539551d705884e Mon Sep 17 00:00:00 2001 From: David Soria Parra Date: Fri, 11 Oct 2024 11:22:04 +0100 Subject: [PATCH] pyproject: Remove strict typing for now We currently have 21 non strict typing issues and 112 strict typing issues. Most of the strict ones come from generic handling. This is the initial step to tackle the non strict errors by ignoring strict errors and adding github actions to check for type errors. Once this is place we move back to using strict types. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e0cb38b..4d2258b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,6 @@ packages = ["mcp_python"] [tool.pyright] include = ["mcp_python", "tests"] -typeCheckingMode = "strict" venvPath = "." venv = ".venv"