This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
from typing import TYPE_CHECKING, Any, Optional, final | |
import sqlalchemy as sa | |
from pydantic import BaseModel, Field | |
from sqlalchemy.dialects.postgresql import JSONB | |
from sqlalchemy.orm import Mapped, declarative_base, mapped_column, sessionmaker | |
from typing_extensions import override | |
if TYPE_CHECKING: |