diff --git a/hyperglass/external/_base.py b/hyperglass/external/_base.py index 25a79e4..8e65c86 100644 --- a/hyperglass/external/_base.py +++ b/hyperglass/external/_base.py @@ -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 diff --git a/hyperglass/models/system.py b/hyperglass/models/system.py index 3569ede..d96aa67 100644 --- a/hyperglass/models/system.py +++ b/hyperglass/models/system.py @@ -7,13 +7,13 @@ from ipaddress import ip_address # Third Party from pydantic import ( + FilePath, RedisDsn, SecretStr, BaseSettings, DirectoryPath, IPvAnyAddress, validator, - FilePath, ) # Project