mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
make flake8 happy
This commit is contained in:
parent
38c236aa02
commit
873bf80131
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ def visit_time_ranges(vobject_item: vobject.base.Component, child_name: str,
|
||||||
if hasattr(comp, "recurrence_id") and comp.recurrence_id.value:
|
if hasattr(comp, "recurrence_id") and comp.recurrence_id.value:
|
||||||
recurrences.append(comp.recurrence_id.value)
|
recurrences.append(comp.recurrence_id.value)
|
||||||
if comp.rruleset:
|
if comp.rruleset:
|
||||||
if comp.rruleset._len == None:
|
if comp.rruleset._len is None:
|
||||||
logger.warning("Ignore empty RRULESET in item at RECURRENCE-ID with value '%s' and UID '%s'", comp.recurrence_id.value, comp.uid.value)
|
logger.warning("Ignore empty RRULESET in item at RECURRENCE-ID with value '%s' and UID '%s'", comp.recurrence_id.value, comp.uid.value)
|
||||||
else:
|
else:
|
||||||
# Prevent possible infinite loop
|
# Prevent possible infinite loop
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue