*args and **kwargs for test collection

This commit is contained in:
Unrud 2016-08-03 14:35:50 +02:00
parent 0fc7f787a8
commit de510148a0

View File

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