*args and **kwargs for test collection
This commit is contained in:
parent
0fc7f787a8
commit
de510148a0
@ -27,5 +27,5 @@ from radicale import storage
|
|||||||
# TODO: make something more in this collection (and test it)
|
# TODO: make something more in this collection (and test it)
|
||||||
class Collection(storage.Collection):
|
class Collection(storage.Collection):
|
||||||
"""Collection stored in a folder."""
|
"""Collection stored in a folder."""
|
||||||
def __init__(self, path, principal=False):
|
def __init__(self, *args, **kwargs):
|
||||||
super().__init__(path, principal)
|
super().__init__(*args, **kwargs)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user