mirror of
https://github.com/ChronosX88/PySca.git
synced 2024-11-05 10:11:01 +00:00
6 lines
136 B
Python
6 lines
136 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class AbstractFilter(ABC):
|
|
@abstractmethod
|
|
def filter(self, result) -> object:
|
|
pass |