summaryrefslogtreecommitdiff
path: root/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap.py')
-rw-r--r--bootstrap.py11
1 files changed, 6 insertions, 5 deletions
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__)