mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-14 22:52:10 +00:00
6 lines
129 B
Python
6 lines
129 B
Python
|
|
from tzlocal import get_localzone
|
||
|
|
from zoneinfo import ZoneInfo
|
||
|
|
|
||
|
|
tz = get_localzone()
|
||
|
|
assert tz == ZoneInfo(key='Europe/Berlin')
|