(self)
| 268 | |
| 269 | @property |
| 270 | def timezone(self) -> Timezone | FixedTimezone | None: |
| 271 | if not isinstance(self.tzinfo, (Timezone, FixedTimezone)): |
| 272 | return None |
| 273 | |
| 274 | return self.tzinfo |
| 275 | |
| 276 | @property |
| 277 | def tz(self) -> Timezone | FixedTimezone | None: |
no outgoing calls