Skip to content

Commit 172543b

Browse files
authored
Merge pull request #194 from Stability-AI/bugfix/ControlLLLiteAdvanced
Fix for ControlLLLiteAdvanced
2 parents b9c8bdc + 6d00ede commit 172543b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adv_control/control_lllite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def __init__(self, patch_attn1: LLLitePatch, patch_attn2: LLLitePatch):
287287
class ControlLLLiteAdvanced(ControlBase, AdvancedControlBase):
288288
# This ControlNet is more of an attention patch than a traditional controlnet
289289
def __init__(self, patch_attn1: LLLitePatch, patch_attn2: LLLitePatch, timestep_keyframes: TimestepKeyframeGroup, device, ops: comfy.ops.disable_weight_init):
290-
super().__init__(device)
290+
super().__init__()
291291
AdvancedControlBase.__init__(self, super(), timestep_keyframes=timestep_keyframes, weights_default=ControlWeights.controllllite())
292292
self.device = device
293293
self.ops = ops

0 commit comments

Comments
 (0)