From bccc07cc99e50880e8af9faa0e8882221c53b216 Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Mon, 27 May 2024 14:30:15 -0400 Subject: [PATCH] fix import formatting --- hyperglass/frontend/__init__.py | 2 +- hyperglass/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hyperglass/frontend/__init__.py b/hyperglass/frontend/__init__.py index 2fe338e..714884c 100644 --- a/hyperglass/frontend/__init__.py +++ b/hyperglass/frontend/__init__.py @@ -11,7 +11,7 @@ from pathlib import Path # Project from hyperglass.log import log -from hyperglass.util import copyfiles, check_path, dotenv_to_dict, move_files +from hyperglass.util import copyfiles, check_path, move_files, dotenv_to_dict if t.TYPE_CHECKING: # Project diff --git a/hyperglass/main.py b/hyperglass/main.py index c82d4c3..88ac911 100644 --- a/hyperglass/main.py +++ b/hyperglass/main.py @@ -1,9 +1,9 @@ """Start hyperglass.""" # Standard Library -import asyncio import sys import typing as t +import asyncio import logging # Third Party