Return UTC timezone created with ZoneInfo.
(self)
| 174 | |
| 175 | @cached_property |
| 176 | def utc(self) -> tzinfo: |
| 177 | """Return UTC timezone created with ZoneInfo.""" |
| 178 | return self.get_timezone('UTC') |
| 179 | |
| 180 | |
| 181 | timezone = _Zone() |
nothing calls this directly
no test coverage detected