From a53f2bc5e6de27c2f80242b3c957c87fca4c3996 Mon Sep 17 00:00:00 2001 From: Lorenze Jay Date: Fri, 9 Aug 2024 10:19:38 -0700 Subject: [PATCH] fixed type checker --- .github/workflows/type-checker.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/type-checker.yml b/.github/workflows/type-checker.yml index 0f81da85a..9a450f007 100644 --- a/.github/workflows/type-checker.yml +++ b/.github/workflows/type-checker.yml @@ -23,4 +23,4 @@ jobs: pip install mypy - name: Run type checks - run: mypy src --exclude=crewai/cli/templates + run: mypy src diff --git a/pyproject.toml b/pyproject.toml index 8858953ef..16c07f71b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ crewai = "crewai.cli.cli:crewai" [tool.mypy] ignore_missing_imports = true disable_error_code = 'import-untyped' -exclude = ["cli/templates/main.py", "cli/templates/crew.py"] +exclude = ["cli/templates/main.py", "cli/templates/crew.py", "cli/templates/pipeline/main.py", "cli/templates/pipeline_router/main.py"] [build-system] requires = ["poetry-core"]