Backup-bdg's picture
Upload 964 files
51ff9e5 verified
raw
history blame
315 Bytes
from dataclasses import dataclass
from openhands.core.schema import ActionType
from openhands.events.action.action import Action
@dataclass
class NullAction(Action):
"""An action that does nothing."""
action: str = ActionType.NULL
@property
def message(self) -> str:
return 'No action'