Source code for sherpa_ai.actions.empty
from typing import Any
from sherpa_ai.actions.base import BaseAction
[docs]
class EmptyAction(BaseAction):
# Override the name and args from BaseAction
name: str = ""
args: dict = {}
usage: str = "Make a decision"
[docs]
def execute(self) -> str:
pass