Small refactor of V3TestNode

This commit is contained in:
Jedrzej Kosinski 2025-06-19 04:55:05 -05:00
parent b52154f382
commit 6cf5db512a

View File

@ -14,14 +14,12 @@ class XYZ:
class Output(io.OutputV3): class Output(io.OutputV3):
... ...
class MyState(io.NodeState):
my_str: str
my_int: int
class V3TestNode(io.ComfyNodeV3): class V3TestNode(io.ComfyNodeV3):
class State(io.NodeState):
state: MyState my_str: str
my_int: int
state: State
def __init__(self): def __init__(self):
super().__init__() super().__init__()