From bfedee0532ff99699c72e5331b142806fa7f6981 Mon Sep 17 00:00:00 2001 From: hjlarry Date: Wed, 14 Jan 2026 16:40:52 +0800 Subject: [PATCH] fix --- api/models/comment.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/api/models/comment.py b/api/models/comment.py index ff675367d6..817e9b5c7f 100644 --- a/api/models/comment.py +++ b/api/models/comment.py @@ -1,7 +1,7 @@ """Workflow comment models.""" from datetime import datetime -from typing import TYPE_CHECKING, Optional +from typing import Optional from sqlalchemy import Index, func from sqlalchemy.orm import Mapped, mapped_column, relationship @@ -11,9 +11,6 @@ from .base import Base from .engine import db from .types import StringUUID -if TYPE_CHECKING: - pass - class WorkflowComment(Base): """Workflow comment model for canvas commenting functionality.