소스 검색

Remove spaces from empty lines

Guillaume Ayoub 9 년 전
부모
커밋
4e8f518cbb
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      radicale/xmlutils.py

+ 2 - 2
radicale/xmlutils.py

@@ -222,7 +222,7 @@ def _time_range_match(vobject_item, filter_, child_name):
         dtstart = child.dtstart.value
         if isinstance(dtstart, datetime) and not dtstart.tzinfo:
             dtstart = dtstart.replace(tzinfo=timezone.utc)
-                
+
         if not isinstance(dtstart, datetime):
             dtstart_is_datetime = False
             # TODO: changing dates to datetimes may be wrong because of tz
@@ -240,7 +240,7 @@ def _time_range_match(vobject_item, filter_, child_name):
                     tzinfo=timezone.utc)
             if isinstance(dtend, datetime) and not dtend.tzinfo:
                 dtend = dtend.replace(tzinfo=timezone.utc)
-   
+
             return start < dtend and end > dtstart
         elif duration is not None:
             duration = duration.value