From 12f9ac44c25e867d209fa3e1449399dd773f03ef Mon Sep 17 00:00:00 2001 From: Unrud Date: Fri, 9 Jun 2017 02:29:44 +0200 Subject: [PATCH] Remove __init__ from BaseCollection It's not used anywhere --- radicale/storage.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/radicale/storage.py b/radicale/storage.py index 75099ca..73536f6 100644 --- a/radicale/storage.py +++ b/radicale/storage.py @@ -322,15 +322,6 @@ class BaseCollection: configuration = None logger = None - def __init__(self, path, principal=False): - """Initialize the collection. - - ``path`` must be the normalized relative path of the collection, using - the slash as the folder delimiter, with no leading nor trailing slash. - - """ - raise NotImplementedError - @classmethod def discover(cls, path, depth="0"): """Discover a list of collections under the given ``path``.