mirror of https://github.com/sgoudham/Enso-Bot.git
6 lines
168 B
Python
6 lines
168 B
Python
5 years ago
|
import sys
|
||
|
if sys.platform == 'win32':
|
||
|
from tzlocal.win32 import get_localzone, reload_localzone
|
||
|
else:
|
||
|
from tzlocal.unix import get_localzone, reload_localzone
|