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.
This commit is contained in:
Rodrigo 2024-06-12 19:49:24 -03:00
commit 47cb35fd9c

View file

@ -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):