From 836220311a9254a2deb4a6ea7f7431639390ff63 Mon Sep 17 00:00:00 2001 From: kamoo1 <4003844+kamoo1@users.noreply.github.com> Date: Sun, 21 May 2023 18:31:02 +0800 Subject: [PATCH] Standardize Import Statement --- ah/db.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ah/db.py b/ah/db.py index 5ee9e7d..c951eb0 100644 --- a/ah/db.py +++ b/ah/db.py @@ -4,7 +4,7 @@ import json import logging from functools import singledispatchmethod -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, Dict, Optional, Any from ah.storage import BinaryFile, TextFile, BaseFile from ah.models import ( @@ -17,9 +17,9 @@ FactionEnum, ) from ah.defs import SECONDS_IN -from typing import Dict, Optional, Any from ah import config +# we only need this for type checking, to avoid circular import if TYPE_CHECKING: from ah.api import GHAPI