From ca78a260ed5ef99d847097dba08c637d689da400 Mon Sep 17 00:00:00 2001 From: Raphael Walker Date: Thu, 5 Dec 2024 15:44:43 +0100 Subject: [PATCH] fix return order --- comfy_extras/nodes_flux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_flux.py b/comfy_extras/nodes_flux.py index 539635bb2..fb4811f84 100644 --- a/comfy_extras/nodes_flux.py +++ b/comfy_extras/nodes_flux.py @@ -125,7 +125,7 @@ class ReduxApplyWithAttnMask: m.set_model_patch_replace(wrapper, "dit", "double_blocks", i) else: m = model - return (c, m) + return (m, c) NODE_CLASS_MAPPINGS = { "CLIPTextEncodeFlux": CLIPTextEncodeFlux,