From 75c9267ecc6889708dbf3721abf8726a825363b4 Mon Sep 17 00:00:00 2001 From: Karsten Lehmann Date: Fri, 28 Aug 2020 20:04:57 +0200 Subject: [PATCH] Fix parent initialization of SyncCollectionHandler --- src/ankisyncd/sync_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ankisyncd/sync_app.py b/src/ankisyncd/sync_app.py index 638e6d6..3cbe3aa 100644 --- a/src/ankisyncd/sync_app.py +++ b/src/ankisyncd/sync_app.py @@ -52,7 +52,7 @@ class SyncCollectionHandler(Syncer): def __init__(self, col, session): # So that 'server' (the 3rd argument) can't get set - super().__init__(self, col) + super().__init__(col) self.session = session @staticmethod