From f2230a6d701657b2b2ff9ea35151035044ab8b7d Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 23 Jun 2023 09:13:38 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=9A=20chore(base.py):=20move=20DIRECT?= =?UTF-8?q?=5FTYPES=20import=20to=20utils.constants=20The=20DIRECT=5FTYPES?= =?UTF-8?q?=20import=20has=20been=20moved=20to=20the=20utils.constants=20m?= =?UTF-8?q?odule=20to=20improve=20the=20organization=20of=20the=20code.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/graph/vertex/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/langflow/graph/vertex/base.py b/src/backend/langflow/graph/vertex/base.py index 87a09d604..61c50eda5 100644 --- a/src/backend/langflow/graph/vertex/base.py +++ b/src/backend/langflow/graph/vertex/base.py @@ -1,4 +1,4 @@ -from langflow.graph.vertex.constants import DIRECT_TYPES +from langflow.utils.constants import DIRECT_TYPES from langflow.interface.initialize import loading from langflow.interface.listing import ALL_TYPES_DICT from langflow.utils.logger import logger