From 2405a6192a1c568027966bd5f2f2c51e246898f1 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Wed, 1 May 2024 09:24:19 +0300 Subject: [PATCH] Update nodes.py --- nodes/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/nodes.py b/nodes/nodes.py index a06f6d9..1d1e7e7 100644 --- a/nodes/nodes.py +++ b/nodes/nodes.py @@ -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: