mirror of
https://github.com/rembo10/headphones.git
synced 2026-05-21 19:07:44 +01:00
2110eb9855
This reverts commit 982594a4a5.
8 lines
262 B
Python
8 lines
262 B
Python
import sys
|
|
if sys.platform == 'win32':
|
|
from tzlocal.win32 import get_localzone, reload_localzone
|
|
elif 'darwin' in sys.platform:
|
|
from tzlocal.darwin import get_localzone, reload_localzone
|
|
else:
|
|
from tzlocal.unix import get_localzone, reload_localzone
|