From 3f302ec6de727bf423832c783f1d7ea661898003 Mon Sep 17 00:00:00 2001 From: Tobias Brox Date: Sun, 20 Oct 2024 20:32:14 +0200 Subject: [PATCH] style --- tests/test_caldav.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/tests/test_caldav.py b/tests/test_caldav.py index 51244ba..e884b79 100644 --- a/tests/test_caldav.py +++ b/tests/test_caldav.py @@ -2529,14 +2529,18 @@ def testRecurringDateWithExceptionSearch(self): assert len(r) == 2 - assert 'RRULE' not in r[0].data - assert 'RRULE' not in r[1].data + assert "RRULE" not in r[0].data + assert "RRULE" not in r[1].data - assert isinstance(r[0].icalendar_component['RECURRENCE-ID'], icalendar.vDDDTypes) - assert r[0].icalendar_component['RECURRENCE-ID'].dt == date(2024, 4, 11) + assert isinstance( + r[0].icalendar_component["RECURRENCE-ID"], icalendar.vDDDTypes + ) + assert r[0].icalendar_component["RECURRENCE-ID"].dt == date(2024, 4, 11) - assert isinstance(r[1].icalendar_component['RECURRENCE-ID'], icalendar.vDDDTypes) - assert r[1].icalendar_component['RECURRENCE-ID'].dt == date(2024, 4, 25) + assert isinstance( + r[1].icalendar_component["RECURRENCE-ID"], icalendar.vDDDTypes + ) + assert r[1].icalendar_component["RECURRENCE-ID"].dt == date(2024, 4, 25) def testOffsetURL(self): """