fix: add TYPE_CHECKING import for Account type annotation

This commit is contained in:
GareArc 2026-01-26 16:07:49 -08:00 committed by NFish
parent 990e8feee8
commit 849b4b8c40
1 changed files with 4 additions and 1 deletions

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