11 lines
186 B
Python
11 lines
186 B
Python
import abc
|
|
|
|
|
|
class Formatter(abc.ABC):
|
|
@abc.abstractmethod
|
|
def format(self, obj):
|
|
raise NotImplementedError
|
|
|
|
def __call__(self, obj):
|
|
return self.format(obj)
|