From d8b498261538892cd149248cfa3477fce85901c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=AE=AE=E0=AE=A9=E0=AF=8B=E0=AE=9C=E0=AF=8D=E0=AE=95?= =?UTF-8?q?=E0=AF=81=E0=AE=AE=E0=AE=BE=E0=AE=B0=E0=AF=8D=20=E0=AE=AA?= =?UTF-8?q?=E0=AE=B4=E0=AE=A9=E0=AE=BF=E0=AE=9A=E0=AF=8D=E0=AE=9A=E0=AE=BE?= =?UTF-8?q?=E0=AE=AE=E0=AE=BF?= Date: Tue, 7 Jan 2025 18:13:19 +0530 Subject: [PATCH] fix return --- openhands/controller/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/controller/agent.py b/openhands/controller/agent.py index 2ca1a5aade1d..4f39f69e5551 100644 --- a/openhands/controller/agent.py +++ b/openhands/controller/agent.py @@ -50,7 +50,7 @@ def complete(self) -> bool: return self._complete @abstractmethod - def step(self, state: 'State') -> Action: + def step(self, state: 'State') -> 'Action': """Starts the execution of the assigned instruction. This method should be implemented by subclasses to define the specific execution logic. """