from dataclasses import dataclass | |
from openhands.core.schema import ActionType | |
from openhands.events.action.action import Action | |
class NullAction(Action): | |
"""An action that does nothing.""" | |
action: str = ActionType.NULL | |
def message(self) -> str: | |
return 'No action' | |