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 # Project
from hyperglass.log import log from hyperglass.log import log
from hyperglass.util import parse_exception, repr_from_attrs from hyperglass.util import parse_exception, repr_from_attrs
from hyperglass.settings import Settings
from hyperglass.constants import __version__ from hyperglass.constants import __version__
from hyperglass.models.fields import JsonValue, HttpMethod, Primitives from hyperglass.models.fields import JsonValue, HttpMethod, Primitives
from hyperglass.exceptions.private import ExternalError from hyperglass.exceptions.private import ExternalError
from hyperglass.settings import Settings
if t.TYPE_CHECKING: if t.TYPE_CHECKING:
# Standard Library # Standard Library

View file

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