Skip to content

Commit 6d00ede

Browse files
device is no longer a parameter to constructor for ControlBase
1 parent b9c8bdc commit 6d00ede

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)