You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yeah, having the exact same problem in Australia. There's lots of sloppy timezone code out there that assumes all time zones are aligned to whole-hour intervals. I'll see if I can put in a pull request.
tz_offset: int = 0
should betz_offset: float = 0.0
as India is at UTC +5.5 hours for example.self._tz_offset = tz_offset * 60 * 60
can be cast toint
if required.The text was updated successfully, but these errors were encountered: