From e1608d143fe548ef2b9f394f6587afcf05fcbebf Mon Sep 17 00:00:00 2001 From: Deon Sanchez <69873175+deon-sanchez@users.noreply.github.com> Date: Tue, 29 Apr 2025 13:13:34 -0600 Subject: [PATCH] fix: update NestedDictInput value type to remove unnecessary Data option (#7437) Co-authored-by: Jordan Frazier <122494242+jordanrfrazier@users.noreply.github.com> --- src/backend/base/langflow/inputs/inputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/base/langflow/inputs/inputs.py b/src/backend/base/langflow/inputs/inputs.py index 1bc32c18c..1255b42de 100644 --- a/src/backend/base/langflow/inputs/inputs.py +++ b/src/backend/base/langflow/inputs/inputs.py @@ -443,7 +443,7 @@ class NestedDictInput( """ field_type: SerializableFieldTypes = FieldTypes.NESTED_DICT - value: dict | Data | None = {} + value: dict | None = {} class DictInput(BaseInputMixin, ListableInputMixin, InputTraceMixin, ToolModeMixin):