Skip to content

Commit 079a156

Browse files
nblockWhyNotHugo
authored andcommitted
Remove superflous string quotes
1 parent 242216d commit 079a156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vdirsyncer/storage/memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class MemoryStorage(Storage):
1818

1919
def __init__(self, fileext="", **kwargs):
2020
if kwargs.get("collection") is not None:
21-
raise exceptions.UserError("MemoryStorage does not support " "collections.")
21+
raise exceptions.UserError("MemoryStorage does not support collections.")
2222
self.items = {} # href => (etag, item)
2323
self.metadata = {}
2424
self.fileext = fileext

0 commit comments

Comments
 (0)