We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tz_offset: int = 0 should be tz_offset: float = 0.0 as India is at UTC +5.5 hours for example.
tz_offset: int = 0
tz_offset: float = 0.0
self._tz_offset = tz_offset * 60 * 60 can be cast to int if required.
self._tz_offset = tz_offset * 60 * 60
int