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 /config.py | |
| parent | e516059c716537259c601c022cc3bad44025385e (diff) | |
Reduce import scopes, remove cycles.
Diffstat (limited to 'config.py')
| -rw-r--r-- | config.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -71,8 +71,6 @@ import re import sys from typing import Any, Dict, List -import string_utils - # Note: at this point in time, logging hasn't been configured and # anything we log will come out the root logger. @@ -155,6 +153,8 @@ def is_flag_already_in_argv(var: str): def parse() -> Dict[str, Any]: + import string_utils + """Main program should call this early in main()""" global config_parse_called if config_parse_called: |
