Skip to content
Snippets Groups Projects
Commit da7a79cf authored by Brandon Rodriguez's avatar Brandon Rodriguez
Browse files

Minor constant reorder for alphabetical

parent 3da80e96
......@@ -11,16 +11,16 @@ from django.utils import timezone
from pathlib import PosixPath, PurePath, PurePosixPath, PureWindowsPath
# Imports that may not be accessible, depending on local python environment setup.
try:
from zoneinfo import ZoneInfo
ZONEINFO_PRESENT = True
except ImportError:
ZONEINFO_PRESENT = False
try:
import pytz
PYTZ_PRESENT = True
except ImportError:
PYTZ_PRESENT = False
try:
from zoneinfo import ZoneInfo
ZONEINFO_PRESENT = True
except ImportError:
ZONEINFO_PRESENT = False
# Simple types that do not need to be recursively inspected.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment