From e1f6db660ac6ece620b36180cad8cf394e1cdb18 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 9 Feb 2024 08:47:22 -0300 Subject: [PATCH] Update import statements in test_custom_types.py --- tests/test_custom_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_custom_types.py b/tests/test_custom_types.py index ba54b7023..33c854ba3 100644 --- a/tests/test_custom_types.py +++ b/tests/test_custom_types.py @@ -1,7 +1,7 @@ # Test this: -from langflow.interface.importing.utils import get_function import pytest -from langflow.interface.tools.custom import PythonFunctionTool, PythonFunction +from langflow.interface.custom.utils import get_function +from langflow.interface.tools.custom import PythonFunction, PythonFunctionTool from langflow.utils import constants