From aab7a9b64639f8bce21f19c3febd41ada4057255 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Thu, 25 Sep 2025 16:56:02 -0400 Subject: [PATCH] Remove print. --- comfy_extras/nodes_mask.py | 1 - 1 file changed, 1 deletion(-) diff --git a/comfy_extras/nodes_mask.py b/comfy_extras/nodes_mask.py index d7325f535..a5e405008 100644 --- a/comfy_extras/nodes_mask.py +++ b/comfy_extras/nodes_mask.py @@ -40,7 +40,6 @@ def composite(destination, source, x, y, mask = None, multiplier = 8, resize_sou inverse_mask = torch.ones_like(mask) - mask - print(mask.shape, source.shape, source[..., :visible_height, :visible_width].shape) source_portion = mask * source[..., :visible_height, :visible_width] destination_portion = inverse_mask * destination[..., top:bottom, left:right]