fix return order

This commit is contained in:
Raphael Walker 2024-12-05 15:44:43 +01:00
parent 9e674c4ec8
commit ca78a260ed

View File

@ -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,