diff --git a/comfy_api/latest/_io.py b/comfy_api/latest/_io.py index 313a5af20cb8..79217c81317c 100644 --- a/comfy_api/latest/_io.py +++ b/comfy_api/latest/_io.py @@ -1815,7 +1815,7 @@ def from_dict(cls, data: dict[str, Any]) -> "NodeOutput": ui = data["ui"] if "expand" in data: expand = data["expand"] - return cls(args=args, ui=ui, expand=expand) + return cls(*args, ui=ui, expand=expand) def __getitem__(self, index) -> Any: return self.args[index]