diff --git a/custom_nodes/execution-inversion-demo-comfyui/nodes.py b/custom_nodes/execution-inversion-demo-comfyui/nodes.py index 776b3479d..874d2c95d 100644 --- a/custom_nodes/execution-inversion-demo-comfyui/nodes.py +++ b/custom_nodes/execution-inversion-demo-comfyui/nodes.py @@ -195,7 +195,7 @@ class InversionDemoLazyIndexSwitch: def index_switch(self, index, **kwargs): key = "value%d" % index - return kwargs[key] + return (kwargs[key],) class InversionDemoLazyMixImages: def __init__(self):