Skip to content

Commit 16049ca

Browse files
quick fix
1 parent 6a6dfe1 commit 16049ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/diffusers/utils/import_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ class DummyObject(type):
571571
"""
572572

573573
def __getattr__(cls, key):
574-
if key.startswith("_"):
574+
if key.startswith("_") and key != "_load_connected_pipes":
575575
return super().__getattr__(cls, key)
576576
requires_backends(cls, cls._backends)
577577

0 commit comments

Comments
 (0)