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" FUNCTION = "execute"
def execute(self, tensor): def execute(self, tensor):
return { return {"ui": {"tensor": tensor}}
"result": tensor
}
export_custom_nodes() export_custom_nodes()