mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-20 13:23:24 -07:00
Update apscheduler==3.8.1
This commit is contained in:
parent
a6c933cfce
commit
973cad264f
20 changed files with 1122 additions and 333 deletions
15
lib/pytz_deprecation_shim/_compat.py
Normal file
15
lib/pytz_deprecation_shim/_compat.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
import sys
|
||||
|
||||
if sys.version_info[0] == 2:
|
||||
from . import _compat_py2 as _compat_impl
|
||||
else:
|
||||
from . import _compat_py3 as _compat_impl
|
||||
|
||||
UTC = _compat_impl.UTC
|
||||
get_timezone = _compat_impl.get_timezone
|
||||
get_timezone_file = _compat_impl.get_timezone_file
|
||||
get_fixed_offset_zone = _compat_impl.get_fixed_offset_zone
|
||||
is_ambiguous = _compat_impl.is_ambiguous
|
||||
is_imaginary = _compat_impl.is_imaginary
|
||||
enfold = _compat_impl.enfold
|
||||
get_fold = _compat_impl.get_fold
|
Loading…
Add table
Add a link
Reference in a new issue