2020-11-08 09:25:48 +00:00
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
2020-11-08 09:40:26 +00:00
|
|
|
class AbstractFilter(ABC):
|
2020-11-08 09:25:48 +00:00
|
|
|
@abstractmethod
|
2020-11-08 09:42:45 +00:00
|
|
|
def filter(self, result) -> object:
|
2020-11-08 09:25:48 +00:00
|
|
|
pass
|