Skip to content

Commit

Permalink
fixed macrovision / userdb circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
nfearnley committed May 21, 2024
1 parent 46e1da5 commit 1667c6d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sizebot/lib/macrovision.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from typing import Any
from typing import Any, TYPE_CHECKING
if TYPE_CHECKING:
from sizebot.lib.userdb import User


import base64
from dataclasses import dataclass
Expand All @@ -9,7 +12,6 @@
from sizebot.lib.digidecimal import Decimal
from sizebot.lib.stats import StatBox
from sizebot.lib.units import SV
from sizebot.lib.userdb import User
from sizebot.lib.utils import url_safe

_model_heights = json.loads(pkg_resources.read_text(sizebot.data, "models.json"))
Expand Down

0 comments on commit 1667c6d

Please sign in to comment.