Return the name of the currently active time zone.
()
| 67 | |
| 68 | |
| 69 | def get_current_timezone_name(): |
| 70 | """Return the name of the currently active time zone.""" |
| 71 | return _get_timezone_name(get_current_timezone()) |
| 72 | |
| 73 | |
| 74 | def _get_timezone_name(timezone): |
no test coverage detected