We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18eaa77 commit 75ab27bCopy full SHA for 75ab27b
src/diffusers/models/controlnets/controlnet_union.py
@@ -70,6 +70,8 @@ def __iter__(self):
70
def __getitem__(self, key):
71
return getattr(self, key)
72
73
+ def __setitem__(self, key, value):
74
+ setattr(self, key, value)
75
76
@dataclass
77
class ControlNetUnionInputProMax:
@@ -104,6 +106,8 @@ def __iter__(self):
104
106
105
107
108
109
110
111
112
logger = logging.get_logger(__name__) # pylint: disable=invalid-name
113
0 commit comments