From 703e5079a028851eb830c2731e3b6b856c4f13f8 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sun, 7 Jun 2026 23:51:55 +0000 Subject: [PATCH] fix: remove unused type: ignore[misc] on ask_for_human_input property MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: João --- lib/crewai/src/crewai/experimental/agent_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/crewai/src/crewai/experimental/agent_executor.py b/lib/crewai/src/crewai/experimental/agent_executor.py index 0c6c8b23e..df9dd61b0 100644 --- a/lib/crewai/src/crewai/experimental/agent_executor.py +++ b/lib/crewai/src/crewai/experimental/agent_executor.py @@ -279,7 +279,7 @@ class AgentExecutor(Flow[AgentExecutorState], BaseAgentExecutor): """Set state messages.""" self._state.messages = value - @property # type: ignore[misc] + @property def ask_for_human_input(self) -> bool: """Compatibility property - delegates to state for ExecutorContext protocol.""" return self._state.ask_for_human_input # type: ignore[no-any-return]