From b255a0cae18dfed27ee9c30d4ceb11280b7e6ee6 Mon Sep 17 00:00:00 2001 From: ogabrielluiz Date: Mon, 10 Jun 2024 11:38:42 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20(types.py):=20Update=20import=20?= =?UTF-8?q?statements=20to=20include=20log=5Ftransaction=20function=20for?= =?UTF-8?q?=20better=20code=20organization=20and=20readability?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/base/langflow/graph/vertex/types.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/backend/base/langflow/graph/vertex/types.py b/src/backend/base/langflow/graph/vertex/types.py index 9123a21fa..c2a54f418 100644 --- a/src/backend/base/langflow/graph/vertex/types.py +++ b/src/backend/base/langflow/graph/vertex/types.py @@ -8,10 +8,9 @@ from loguru import logger from langflow.graph.schema import CHAT_COMPONENTS, RECORDS_COMPONENTS, InterfaceComponentTypes from langflow.graph.utils import ArtifactType, UnbuiltObject, serialize_field from langflow.graph.vertex.base import Vertex -from langflow.graph.vertex.utils import log_transaction from langflow.schema import Record from langflow.schema.schema import INPUT_FIELD_NAME -from langflow.services.monitor.utils import log_vertex_build +from langflow.services.monitor.utils import log_transaction, log_vertex_build from langflow.utils.schemas import ChatOutputResponse, RecordOutputResponse from langflow.utils.util import unescape_string