7 lines
86 B
Python
7 lines
86 B
Python
import abc
|
|
|
|
|
|
class Formatter(abc.ABC):
|
|
def format(self, info: dict):
|
|
pass
|