From a9f5554342ae337190da8f42dde5480ac98ee955 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Wed, 23 Jul 2025 14:46:56 -0700 Subject: [PATCH] Remove unnecessary **kwargs in io.py --- comfy_api/v3/io.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/comfy_api/v3/io.py b/comfy_api/v3/io.py index cab458fa5..f2a92d53e 100644 --- a/comfy_api/v3/io.py +++ b/comfy_api/v3/io.py @@ -1460,16 +1460,14 @@ class NodeOutput: ''' Standardized output of a node; can pass in any number of args and/or a UIOutput into 'ui' kwarg. ''' - def __init__(self, *args: Any, ui: _UIOutput | dict=None, expand: dict=None, block_execution: str=None, **kwargs): + def __init__(self, *args: Any, ui: _UIOutput | dict=None, expand: dict=None, block_execution: str=None): self.args = args self.ui = ui self.expand = expand self.block_execution = block_execution - # self.kwargs = kwargs @property def result(self): - # TODO: use kwargs to refer to outputs by id + organize in proper order return self.args if len(self.args) > 0 else None @classmethod