aboutsummaryrefslogtreecommitdiffstats
path: root/app/PluginInterface.py
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2023-09-02 21:48:53 +0300
committerJan Tuomi <jans.tuomi@gmail.com>2023-09-10 19:01:00 +0300
commitc13734f56e9b01a61cfb66019a71d46c3dfe6f86 (patch)
tree155da5a7386a6fabf493640bd9d0eb9aa10313c2 /app/PluginInterface.py
parent4745449cf847f27c3cbbca5cef2f1d9d02103692 (diff)
Add tinydb
Diffstat (limited to 'app/PluginInterface.py')
-rw-r--r--app/PluginInterface.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/PluginInterface.py b/app/PluginInterface.py
index f334034..6492ed1 100644
--- a/app/PluginInterface.py
+++ b/app/PluginInterface.py
@@ -10,5 +10,5 @@ class PluginInterface(ABC):
self.params = params
@abstractmethod
- def process(self, items: list[Item]) -> list[Item]:
+ def process(self, source_id: str | None, items: list[Item]) -> list[Item]:
pass