import abc class Formatter(abc.ABC): @abc.abstractmethod def format(self, info: dict): raise NotImplementedError