"""Pi Portal base command class.""" import abc [docs]class CommandBase(abc.ABC): """A generic, invokable command.""" [docs] @abc.abstractmethod def invoke(self) -> None: """Invoke this command."""