From 4bce5cadfb19fa3b5a297b0bc1ee5034b30f9aa1 Mon Sep 17 00:00:00 2001 From: Emmanuel Morales <31712515+EmmanuelMr18@users.noreply.github.com> Date: Sat, 10 Aug 2024 09:44:37 -0600 Subject: [PATCH] fix(text): return correctly the text in external_text_list node --- comfy-nodes/external_text_list.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/comfy-nodes/external_text_list.py b/comfy-nodes/external_text_list.py index b78bddb..705ded0 100644 --- a/comfy-nodes/external_text_list.py +++ b/comfy-nodes/external_text_list.py @@ -36,8 +36,7 @@ class ComfyUIDeployExternalTextList: except Exception as e: print(f"Error processing images: {e}") pass - return [text_list] - + return ([text_list],) NODE_CLASS_MAPPINGS = {"ComfyUIDeployExternalTextList": ComfyUIDeployExternalTextList} NODE_DISPLAY_NAME_MAPPINGS = {"ComfyUIDeployExternalTextList": "External Text List (ComfyUI Deploy)"}