Update nodes.py

This commit is contained in:
kijai 2024-05-01 09:24:19 +03:00
parent 4685bfe3f3
commit 2405a6192a

View File

@ -1095,7 +1095,7 @@ with the **inputcount** and clicking update.
image = kwargs["image_1"]
for c in range(1, inputcount):
new_image = kwargs[f"image_{c + 1}"]
image, = image_batch_node.batch(new_image, image)
image, = image_batch_node.batch(image, new_image)
return (image,)
class MaskBatchMulti: