From 769ab940ed3283d053222a0268c49776639e467d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Mon, 23 Sep 2024 04:25:13 -0300 Subject: [PATCH] ignore type checker --- src/crewai/crew.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/crewai/crew.py b/src/crewai/crew.py index 00d2c4b2a..91b75c6ce 100644 --- a/src/crewai/crew.py +++ b/src/crewai/crew.py @@ -962,7 +962,10 @@ class Crew(BaseModel): ) -> None: """Test and evaluate the Crew with the given inputs for n iterations concurrently using concurrent.futures.""" self._test_execution_span = self._telemetry.test_execution_span( - self, n_iterations, inputs, openai_model_name + self, + n_iterations, + inputs, + openai_model_name, # type: ignore[arg-type] ) # type: ignore[arg-type] evaluator = CrewEvaluator(self, openai_model_name) # type: ignore[arg-type]