fix: add type ignore for mypy no-any-return on ask_for_human_input property

Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
Devin AI
2026-06-07 23:48:01 +00:00
parent 6161190c5c
commit 37b4db3f15

View File

@@ -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: