diff options
| author | Scott <[email protected]> | 2022-02-02 12:13:27 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-02-02 12:13:27 -0800 |
| commit | 31c81f6539969a5eba864d3305f9fb7bf716a367 (patch) | |
| tree | 497c8911d370002ac195d31d196ba5bcd6da6db8 /unittest_utils.py | |
| parent | 5317c50ce7a96a37acfab3800c0935580766dbbf (diff) | |
Used isort to sort imports. Also added to the git pre-commit hook.
Diffstat (limited to 'unittest_utils.py')
| -rw-r--r-- | unittest_utils.py | 11 |
1 files changed, 5 insertions, 6 deletions
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' |
