1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-15 20:36:55 +00:00

Remove special cases for python < 3.6

This commit is contained in:
Unrud 2022-02-01 17:53:47 +01:00
parent 0221fc357b
commit 580b97fa0f
2 changed files with 1 additions and 12 deletions

View file

@ -28,7 +28,6 @@ import contextlib
import math
import os
import re
import sys
from datetime import datetime, timedelta
from hashlib import sha256
from itertools import chain
@ -327,13 +326,7 @@ def find_time_range(vobject_item: vobject.base.Component, tag: str
start = radicale_filter.DATETIME_MIN
if end is None:
end = radicale_filter.DATETIME_MAX
try:
return math.floor(start.timestamp()), math.ceil(end.timestamp())
except ValueError as e:
if str(e) == ("offset must be a timedelta representing a whole "
"number of minutes") and sys.version_info < (3, 6):
raise RuntimeError("Unsupported in Python < 3.6: %s" % e) from e
raise
return math.floor(start.timestamp()), math.ceil(end.timestamp())
class Item: