From c7d80348ec96e731e0d8007bc92dc0f96dfdc8e7 Mon Sep 17 00:00:00 2001 From: Greyson Lalonde Date: Sat, 6 Sep 2025 02:40:31 -0400 Subject: [PATCH] chore: disable E501 line length linting rule --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8a23d6c76..b99c1e6ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -131,6 +131,7 @@ select = [ "I001", # sort imports "I002", # remove unused imports ] +ignore = ["E501"] # ignore line too long [tool.mypy] exclude = ["src/crewai/cli/templates", "tests"]