Skip to content

Commit

Permalink
fix return
Browse files Browse the repository at this point in the history
  • Loading branch information
SmartManoj committed Jan 7, 2025
1 parent 8e4c08a commit d8b4982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhands/controller/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand Down

0 comments on commit d8b4982

Please sign in to comment.