WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 36357bb

Browse files
authored
process the NodeV1 dict results correctly (#11237)
1 parent f668c2e commit 36357bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comfy_api/latest/_io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1815,7 +1815,7 @@ def from_dict(cls, data: dict[str, Any]) -> "NodeOutput":
18151815
ui = data["ui"]
18161816
if "expand" in data:
18171817
expand = data["expand"]
1818-
return cls(args=args, ui=ui, expand=expand)
1818+
return cls(*args, ui=ui, expand=expand)
18191819

18201820
def __getitem__(self, index) -> Any:
18211821
return self.args[index]

0 commit comments

Comments
 (0)