Matthias Bisping e5a4e7e994 applied black
2022-05-16 15:00:09 +02:00

9 lines
146 B
Python

import abc
from typing import Iterable
class Receiver(abc.ABC):
@abc.abstractmethod
def __call__(self, package: Iterable):
pass