import abc class BaseTaskGroup(abc.ABC): @staticmethod @abc.abstractmethod def create(*args, **kwargs): pass