1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-28 19:40:54 +00:00

enrich for optional tzinfo

This commit is contained in:
Peter Bieringer 2025-08-22 07:49:09 +02:00
parent c74ac9c225
commit 74d21f011c

View file

@ -47,7 +47,7 @@ else:
TRIGGER = datetime | None
def date_to_datetime(d: date) -> datetime:
def date_to_datetime(d: date, tzinfo=vobject.icalendar.utc) -> datetime:
"""Transform any date to a UTC datetime.
If ``d`` is a datetime without timezone, return as UTC datetime. If ``d``
@ -58,7 +58,7 @@ def date_to_datetime(d: date) -> datetime:
d = datetime.combine(d, datetime.min.time())
if not d.tzinfo:
# NOTE: using vobject's UTC as it wasn't playing well with datetime's.
d = d.replace(tzinfo=vobject.icalendar.utc)
d = d.replace(tzinfo=tzinfo)
return d