From 6cf5db512a6889022c8c2a5caab0ce10e5f32aad Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Thu, 19 Jun 2025 04:55:05 -0500 Subject: [PATCH] Small refactor of V3TestNode --- comfy_extras/nodes_v3_test.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/comfy_extras/nodes_v3_test.py b/comfy_extras/nodes_v3_test.py index 47ab473a9..d6f9fcc76 100644 --- a/comfy_extras/nodes_v3_test.py +++ b/comfy_extras/nodes_v3_test.py @@ -14,14 +14,12 @@ class XYZ: class Output(io.OutputV3): ... -class MyState(io.NodeState): - my_str: str - my_int: int - class V3TestNode(io.ComfyNodeV3): - - state: MyState + class State(io.NodeState): + my_str: str + my_int: int + state: State def __init__(self): super().__init__()