fix(text): return correctly the text in external_text_list node

This commit is contained in:
Emmanuel Morales 2024-08-10 09:44:37 -06:00 committed by GitHub
parent f362671041
commit 4bce5cadfb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)"}