From 389ac9e638f54b1079e2b43e0e7f5bac4c2c68e1 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Wed, 22 Jul 2026 23:12:55 +0300 Subject: [PATCH] Naming --- comfy_extras/nodes_looping.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/comfy_extras/nodes_looping.py b/comfy_extras/nodes_looping.py index 76dea3afe..fc4f62284 100644 --- a/comfy_extras/nodes_looping.py +++ b/comfy_extras/nodes_looping.py @@ -49,8 +49,8 @@ class TensorLoopOpen(io.ComfyNode): def define_schema(cls) -> io.Schema: return io.Schema( node_id="TensorLoopOpen", - display_name="Tensor Loop Open", - category="looping/accumulation", + display_name="Open Tensor Loop", + category="advanced/looping/accumulation", inputs=[ io.DynamicCombo.Input("mode", tooltip="Loop termination mode.", options=[ io.DynamicCombo.Option("iterations", [ @@ -132,8 +132,8 @@ class TensorLoopClose(io.ComfyNode): def define_schema(cls) -> io.Schema: return io.Schema( node_id="TensorLoopClose", - display_name="Tensor Loop Close", - category="looping/accumulation", + display_name="Close Tensor Loop", + category="advanced/looping/accumulation", inputs=[ io.FlowControl.Input("flow_control", raw_link=True), io.MatchType.Input("processed", template=cls.MATCHTYPE, raw_link=True, tooltip="Output generated this iteration."),