From a7f515e913f9246374a4f1e008eb48b72a098080 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Wed, 4 Jun 2025 22:09:17 -0700 Subject: [PATCH] Fixed missing self --- comfy_extras/nodes_v3_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_v3_test.py b/comfy_extras/nodes_v3_test.py index 0a0c83f57..0060c8790 100644 --- a/comfy_extras/nodes_v3_test.py +++ b/comfy_extras/nodes_v3_test.py @@ -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)