From 31c81f6539969a5eba864d3305f9fb7bf716a367 Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 2 Feb 2022 12:13:27 -0800 Subject: Used isort to sort imports. Also added to the git pre-commit hook. --- logging_utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'logging_utils.py') diff --git a/logging_utils.py b/logging_utils.py index a16a31b..fdbb7a3 100644 --- a/logging_utils.py +++ b/logging_utils.py @@ -8,15 +8,15 @@ import datetime import enum import io import logging -from logging.config import fileConfig -from logging.handlers import RotatingFileHandler, SysLogHandler import os import random import sys +from logging.config import fileConfig +from logging.handlers import RotatingFileHandler, SysLogHandler from typing import Any, Callable, Dict, Iterable, List, Mapping, Optional -from overrides import overrides import pytz +from overrides import overrides # This module is commonly used by others in here and should avoid # taking any unnecessary dependencies back on them. -- cgit v1.3