From 25589906cb5e6db94de71856b3c48c58581e0c3d Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Wed, 10 Dec 2025 14:25:10 +0200 Subject: [PATCH] process the NodeV1 dict results correctly --- comfy_api/latest/_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]