1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-03 07:26:31 +08:00

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 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__()