From 079a156bf82fe86173d0d05ec0937703b5c6a735 Mon Sep 17 00:00:00 2001 From: Florian Preinstorfer Date: Sat, 25 Mar 2023 14:21:05 +0100 Subject: [PATCH] Remove superflous string quotes --- vdirsyncer/storage/memory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vdirsyncer/storage/memory.py b/vdirsyncer/storage/memory.py index 9522b0a..9e60bcc 100644 --- a/vdirsyncer/storage/memory.py +++ b/vdirsyncer/storage/memory.py @@ -18,7 +18,7 @@ class MemoryStorage(Storage): def __init__(self, fileext="", **kwargs): if kwargs.get("collection") is not None: - raise exceptions.UserError("MemoryStorage does not support " "collections.") + raise exceptions.UserError("MemoryStorage does not support collections.") self.items = {} # href => (etag, item) self.metadata = {} self.fileext = fileext