Some calendar creators such as Google Calendar introduce the non-standard X-WR-TIMEZONE parameter to ICS calendar files to change the timezone. Strict interpretations according to RFC 5545 ignore the ...
def poll(self): if self.timezone: now = datetime.now(timezone.utc).astimezone(self.timezone) else: now = datetime.now(timezone.utc).astimezone() return (now + self ...