From 7aca0528598a81dc423b696e2081bf5596753461 Mon Sep 17 00:00:00 2001 From: Unrud Date: Fri, 17 Jan 2020 05:00:31 +0100 Subject: [PATCH] Remove unused variable --- radicale/app/put.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/app/put.py b/radicale/app/put.py index 1336b96..8262706 100644 --- a/radicale/app/put.py +++ b/radicale/app/put.py @@ -70,7 +70,7 @@ def prepare(vobject_items, path, content_type, permissions, parent_permissions, sorted(vobject_components, key=radicale_item.get_uid), radicale_item.get_uid) - for uid, components in vobject_components_by_uid: + for _, components in vobject_components_by_uid: vobject_collection = vobject.iCalendar() for component in components: vobject_collection.add(component)