ZhengyangZhang's picture
Add files using upload-large-folder tool
a102c6e verified
Raw
History Blame Contribute Delete
312 Bytes
from abc import ABC, abstractmethod
from argparse import ArgumentParser
class BaseDatasetsCLICommand(ABC):
@staticmethod
@abstractmethod
def register_subcommand(parser: ArgumentParser):
raise NotImplementedError()
@abstractmethod
def run(self):
raise NotImplementedError()