Commit 16049caf authored by Patrick von Platen's avatar Patrick von Platen
Browse files

quick fix

parent 6a6dfe1c
......@@ -571,7 +571,7 @@ class DummyObject(type):
"""
def __getattr__(cls, key):
if key.startswith("_"):
if key.startswith("_") and key != "_load_connected_pipes":
return super().__getattr__(cls, key)
requires_backends(cls, cls._backends)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment