Used isort to sort imports. Also added to the git pre-commit hook.
[python_utils.git] / bootstrap.py
index 98da78cf6c1755c5fc3f5e42379e8d900abb10b7..035a38eca691ca7255a4ee4bda0eee6da0813119 100644 (file)
@@ -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__)