fix: add TYPE_CHECKING import for Account type annotation

This commit is contained in:
GareArc 2026-01-26 16:07:49 -08:00
parent be55d688e7
commit 9c470544b1
No known key found for this signature in database

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