refactor: standardize runtime annotation types across multiple files

This commit is contained in:
Abhimanyu Saharan
2026-02-09 17:24:21 +05:30
parent 7706943209
commit f5d592f61a
47 changed files with 2203 additions and 1413 deletions

View File

@@ -3,11 +3,13 @@
from __future__ import annotations
from typing import Literal
from uuid import UUID # noqa: TCH003
from uuid import UUID
from sqlmodel import Field, SQLModel
from app.schemas.common import NonEmptyStr # noqa: TCH001
from app.schemas.common import NonEmptyStr
RUNTIME_ANNOTATION_TYPES = (UUID, NonEmptyStr)
def _lead_reply_tags() -> list[str]: