From 31c81f6539969a5eba864d3305f9fb7bf716a367 Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 2 Feb 2022 12:13:27 -0800 Subject: Used isort to sort imports. Also added to the git pre-commit hook. --- bootstrap.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'bootstrap.py') 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__) -- cgit v1.3