diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-02 00:38:23 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-10 19:01:00 +0300 |
| commit | 52418884284b5bf0919c48cf4b02c3bd23dc9e97 (patch) | |
| tree | 932b30bce805c5602c7cf49c1a8ffef05d8f6a18 /app/PluginInterface.py | |
| parent | 398799de0c1826c3544eb6eec681fa48096932a0 (diff) | |
Do stuff
Diffstat (limited to 'app/PluginInterface.py')
| -rw-r--r-- | app/PluginInterface.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/app/PluginInterface.py b/app/PluginInterface.py index 6194436..f334034 100644 --- a/app/PluginInterface.py +++ b/app/PluginInterface.py @@ -10,9 +10,5 @@ class PluginInterface(ABC): self.params = params @abstractmethod - def validate_input_n(self, n: int) -> bool: - raise NotImplemented("abstract method not implemented") - - @abstractmethod - def process(self, inputs: list[list[Item]]) -> list[Item]: + def process(self, items: list[Item]) -> list[Item]: pass |
