Matthias Bisping 91dd467142 applied black
2022-03-30 19:38:15 +02:00

11 lines
202 B
Python

import abc
class LabelMapper(abc.ABC):
@abc.abstractmethod
def map_labels(self, items):
raise NotImplementedError
def __call__(self, items):
return self.map_labels(items)