X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=bootstrap.py;h=035a38eca691ca7255a4ee4bda0eee6da0813119;hb=cd069f03be92562dd4046382c2e814fdaeb4bd8b;hp=98da78cf6c1755c5fc3f5e42379e8d900abb10b7;hpb=a4bf4d05230474ad14243d67ac7f8c938f670e58;p=python_utils.git diff --git a/bootstrap.py b/bootstrap.py index 98da78c..035a38e 100644 --- a/bootstrap.py +++ b/bootstrap.py @@ -1,19 +1,20 @@ #!/usr/bin/env python3 import functools +import importlib import logging import os -import importlib +import sys from inspect import stack from typing import List -import sys + +import config +import logging_utils +from argparse_utils import ActionNoYes # This module is commonly used by others in here and should avoid # taking any unnecessary dependencies back on them. -from argparse_utils import ActionNoYes -import config -import logging_utils logger = logging.getLogger(__name__)