fix import sorting

This commit is contained in:
thatmattlove 2022-12-19 16:58:12 -05:00
parent 22c65b9d56
commit 4dfe5749ae
2 changed files with 2 additions and 2 deletions

View file

@ -14,10 +14,10 @@ import httpx
# Project
from hyperglass.log import log
from hyperglass.util import parse_exception, repr_from_attrs
from hyperglass.settings import Settings
from hyperglass.constants import __version__
from hyperglass.models.fields import JsonValue, HttpMethod, Primitives
from hyperglass.exceptions.private import ExternalError
from hyperglass.settings import Settings
if t.TYPE_CHECKING:
# Standard Library

View file

@ -7,13 +7,13 @@ from ipaddress import ip_address
# Third Party
from pydantic import (
FilePath,
RedisDsn,
SecretStr,
BaseSettings,
DirectoryPath,
IPvAnyAddress,
validator,
FilePath,
)
# Project