From 8f0163c453c7ad67d2bfa909813313327b179133 Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Fri, 17 Dec 2021 11:25:04 -0700 Subject: [PATCH] Fix import sorting --- hyperglass/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperglass/main.py b/hyperglass/main.py index 930efec..5af75be 100644 --- a/hyperglass/main.py +++ b/hyperglass/main.py @@ -13,6 +13,7 @@ from gunicorn.app.base import BaseApplication # type: ignore # Local from .log import CustomGunicornLogger, log, setup_lib_logging +from .util import get_node_version from .plugins import ( InputPluginManager, OutputPluginManager, @@ -20,7 +21,6 @@ from .plugins import ( init_builtin_plugins, ) from .constants import MIN_NODE_VERSION, MIN_PYTHON_VERSION, __version__ -from .util import get_node_version # Ensure the Python version meets the minimum requirements. pretty_version = ".".join(tuple(str(v) for v in MIN_PYTHON_VERSION))