Spaces:
Sleeping
Sleeping
File size: 218 Bytes
c9d1b27 | 1 2 3 4 5 6 7 8 9 | from utils.constants import VALID_ACTIONS
def validate_action(action):
if action not in VALID_ACTIONS:
raise ValueError(
f"Invalid action: {action}. Must be one of {VALID_ACTIONS}."
)
|