Fix parent initialization of SyncCollectionHandler

This commit is contained in:
Karsten Lehmann 2020-08-28 20:04:57 +02:00
parent 89dcfd6ecd
commit 75c9267ecc
No known key found for this signature in database
GPG Key ID: 6C34E8199743C270

View File

@ -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