1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 15:04:50 +08:00

Fixed missing self

This commit is contained in:
Jedrzej Kosinski
2025-06-04 22:09:17 -07:00
parent 1fb1bad150
commit a7f515e913

View File

@@ -46,7 +46,7 @@ class V3TestNode(ComfyNodeV3):
is_output_node=True,
)
def execute(image: torch.Tensor, xyz, some_int: int, combo: str, mask: torch.Tensor=None):
def execute(self, image: torch.Tensor, xyz, some_int: int, combo: str, mask: torch.Tensor=None):
return NodeOutput(some_int, image)