Skip to content

Commit

Permalink
Standardize Import Statement
Browse files Browse the repository at this point in the history
  • Loading branch information
kamoo1 committed May 21, 2023
1 parent f6e85bc commit 8362203
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ah/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand All @@ -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

Expand Down

0 comments on commit 8362203

Please sign in to comment.