From e5e1e925b7e58c78d2580625cf0b028c5faadd05 Mon Sep 17 00:00:00 2001 From: Riley Mathews Date: Tue, 28 Apr 2026 15:43:51 -0500 Subject: [PATCH] fix lint --- radicale/tests/test_hook_rabbitmq.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/radicale/tests/test_hook_rabbitmq.py b/radicale/tests/test_hook_rabbitmq.py index f42076e6..60863186 100644 --- a/radicale/tests/test_hook_rabbitmq.py +++ b/radicale/tests/test_hook_rabbitmq.py @@ -123,13 +123,14 @@ permissions: RrWw""") with open(htpasswd_file_path, "w", encoding=encoding) as f: f.write("owner:ownerpw\nuser:userpw") - self.configure({"auth": {"type": "htpasswd", - "htpasswd_filename": htpasswd_file_path, - "htpasswd_encryption": "plain"}, - "rights": {"type": "owner_only"}, - "sharing": {"type": "csv", - "collection_by_map": "True", - "permit_create_map": "True"}}) + self.configure({ + "auth": {"type": "htpasswd", + "htpasswd_filename": htpasswd_file_path, + "htpasswd_encryption": "plain"}, + "rights": {"type": "owner_only"}, + "sharing": {"type": "csv", + "collection_by_map": "True", + "permit_create_map": "True"}}) path_owner = "/owner/calendar.ics/" path_shared = "/user/calendar-shared.ics/"