From de5d3c3ad17ffeff80ef3e44baabb972ffe589f7 Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Fri, 19 Sep 2025 19:23:33 -0400 Subject: [PATCH] chore: add pydantic.mypy plugin for better type checking --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 63c195164..d18cef293 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -138,6 +138,7 @@ ignore = ["E501"] # ignore line too long globally [tool.mypy] exclude = ["src/crewai/cli/templates", "tests/"] +plugins = ["pydantic.mypy"] [tool.bandit]