fix: add TYPE_CHECKING import for Account type annotation

This commit is contained in:
GareArc
2026-01-26 16:07:49 -08:00
parent 69b11cc364
commit 6fd5df658c

View File

@ -2,7 +2,10 @@ import json
import logging
from collections.abc import Mapping
from pathlib import Path
from typing import Any
from typing import TYPE_CHECKING, Any
if TYPE_CHECKING:
from models.account import Account
from sqlalchemy import exists, select
from sqlalchemy.orm import Session