Spaces:
Runtime error
Runtime error
from abc import ABC, abstractmethod | |
class TextAttackCommand(ABC): | |
def register_subcommand(parser): | |
raise NotImplementedError() | |
def run(self): | |
raise NotImplementedError() | |