8 lines
131 B
Python
8 lines
131 B
Python
import abc
|
|
|
|
|
|
class Formatter(abc.ABC):
|
|
@abc.abstractmethod
|
|
def format(self, info: dict):
|
|
raise NotImplementedError
|