diff options
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 |
