From dcb835e2eb3ad9e6e8740c5280508a987d600662 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 23 Aug 2023 09:33:35 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20refactor(flow.py):=20remove=20un?= =?UTF-8?q?used=20import=20and=20commented=20out=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/services/database/models/flow.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/backend/langflow/services/database/models/flow.py b/src/backend/langflow/services/database/models/flow.py index bf263993e..2c379ad1d 100644 --- a/src/backend/langflow/services/database/models/flow.py +++ b/src/backend/langflow/services/database/models/flow.py @@ -6,8 +6,6 @@ from uuid import UUID, uuid4 from typing import Dict, Optional from pydantic import field_validator -# if TYPE_CHECKING: - class FlowBase(SQLModelSerializable): name: str = Field(index=True)