fix: remove unused type: ignore[misc] 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:51:55 +00:00
parent 37b4db3f15
commit 703e5079a0

View File

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