From bed962e51359cefe91eee5470305dba147c2601e Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 6 Jul 2023 23:52:59 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=80=20refactor(endpoints.py):=20fix=20?= =?UTF-8?q?import=20statement=20for=20CustomComponent=20The=20import=20sta?= =?UTF-8?q?tement=20for=20CustomComponent=20has=20been=20updated=20to=20re?= =?UTF-8?q?flect=20the=20correct=20module=20path.=20This=20ensures=20that?= =?UTF-8?q?=20the=20correct=20CustomComponent=20class=20is=20imported=20an?= =?UTF-8?q?d=20used=20in=20the=20code.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/api/v1/endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/langflow/api/v1/endpoints.py b/src/backend/langflow/api/v1/endpoints.py index c9f671bcf..e12f2076e 100644 --- a/src/backend/langflow/api/v1/endpoints.py +++ b/src/backend/langflow/api/v1/endpoints.py @@ -7,7 +7,7 @@ from langflow.utils.logger import logger from fastapi import APIRouter, Depends, HTTPException, UploadFile -from langflow.interface.tools.custom import CustomComponent +from langflow.interface.custom.custom import CustomComponent from langflow.api.v1.schemas import ( ProcessResponse,