blob: 500bcca56ac8042c001426da6e6f48ab6722d18b (
plain) (
tree)
|
|
def run(action, wait_id=None, **kwargs):
action.mapping.reset_wait(wait_id)
def description(action, wait_id=None, **kwargs):
if wait_id is None:
return _("reset all waits")
else:
return _("reset wait with id {}").format(wait_id)
|