diff options
| author | Scott Gasch <[email protected]> | 2021-07-08 22:25:12 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-07-08 22:25:12 -0700 |
| commit | 11eeb8574b7b4620ac6fd440cb251f8aa2458f5b (patch) | |
| tree | 97f8e64eddd4528b01af58df269427814b889929 /bootstrap.py | |
| parent | e516059c716537259c601c022cc3bad44025385e (diff) | |
Reduce import scopes, remove cycles.
Diffstat (limited to 'bootstrap.py')
| -rw-r--r-- | bootstrap.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bootstrap.py b/bootstrap.py index 0d37dcb..94c8e9c 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -9,7 +9,6 @@ import traceback import argparse_utils import config -import logging_utils logger = logging.getLogger(__name__) @@ -41,6 +40,8 @@ def handle_uncaught_exception( def initialize(funct): + import logging_utils + """Remember to initialize config and logging before running main.""" @functools.wraps(funct) def initialize_wrapper(*args, **kwargs): |
