From 37b4db3f1590f6d9b054e03bb664913afcefd0d3 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:48:01 +0000 Subject: [PATCH] fix: add type ignore for mypy no-any-return 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 adbbdc5d5..0c6c8b23e 100644 --- a/lib/crewai/src/crewai/experimental/agent_executor.py +++ b/lib/crewai/src/crewai/experimental/agent_executor.py @@ -282,7 +282,7 @@ class AgentExecutor(Flow[AgentExecutorState], BaseAgentExecutor): @property # type: ignore[misc] def ask_for_human_input(self) -> bool: """Compatibility property - delegates to state for ExecutorContext protocol.""" - return self._state.ask_for_human_input + return self._state.ask_for_human_input # type: ignore[no-any-return] @ask_for_human_input.setter def ask_for_human_input(self, value: bool) -> None: