fix output tensor return

This commit is contained in:
doctorpangloss 2025-09-09 18:41:12 -07:00
parent 67432bee6c
commit c10f746bef

View File

@ -16,9 +16,7 @@ class OutputTensor(CustomNode):
FUNCTION = "execute"
def execute(self, tensor):
return {
"result": tensor
}
return {"ui": {"tensor": tensor}}
export_custom_nodes()