From 47cb35fd9cf7b788ac93b2582c0157cca97e9555 Mon Sep 17 00:00:00 2001 From: Rodrigo Date: Wed, 12 Jun 2024 19:49:24 -0300 Subject: [PATCH] refactor: Update imports in TextInput.py Update the imports in TextInput.py to match the latest changes in the langflow library. This ensures compatibility and consistency with the rest of the codebase. --- src/backend/base/langflow/components/inputs/TextInput.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/base/langflow/components/inputs/TextInput.py b/src/backend/base/langflow/components/inputs/TextInput.py index fa869a8db..7ac807cad 100644 --- a/src/backend/base/langflow/components/inputs/TextInput.py +++ b/src/backend/base/langflow/components/inputs/TextInput.py @@ -1,7 +1,7 @@ from langflow.base.io.text import TextComponent from langflow.field_typing import Text -from langflow.inputs import StrInput, Input -from langflow.template import Output +from langflow.inputs import StrInput +from langflow.template import Input, Output class TextInput(TextComponent):