Spaces:
Runtime error
Runtime error
from abc import abstractmethod | |
class AbstractCommand: | |
"""Abstract class for all commands. | |
""" | |
def run(self) -> None: | |
raise NotImplementedError | |