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. --- unittest_utils.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'unittest_utils.py') diff --git a/unittest_utils.py b/unittest_utils.py index 81b339a..ba9ca28 100644 --- a/unittest_utils.py +++ b/unittest_utils.py @@ -7,7 +7,6 @@ caveat emptor. """ -from abc import ABC, abstractmethod import contextlib import functools import inspect @@ -16,20 +15,20 @@ import os import pickle import random import statistics -import time import tempfile -from typing import Any, Callable, Dict, List, Optional +import time import unittest import warnings +from abc import ABC, abstractmethod +from typing import Any, Callable, Dict, List, Optional + +import sqlalchemy as sa import bootstrap import config import function_utils import scott_secrets -import sqlalchemy as sa - - logger = logging.getLogger(__name__) cfg = config.add_commandline_args( f'Logging ({__file__})', 'Args related to function decorators' -- cgit v1.3