Update apscheduler==3.8.1

This commit is contained in:
JonnyWong16 2021-11-28 13:47:49 -08:00
commit 973cad264f
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
20 changed files with 1122 additions and 333 deletions

View file

@ -0,0 +1,13 @@
import sys
_PYTZ_IMPORTED = False
def pytz_imported():
"""Detects whether or not pytz has been imported without importing pytz."""
global _PYTZ_IMPORTED
if not _PYTZ_IMPORTED and "pytz" in sys.modules:
_PYTZ_IMPORTED = True
return _PYTZ_IMPORTED