From 82d0edf121b4ebf467f104c36a27a1ce9826d793 Mon Sep 17 00:00:00 2001 From: Benjamin Berman Date: Wed, 2 Aug 2023 16:46:53 -0700 Subject: [PATCH] add missing type --- comfy/nodes/package_typing.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comfy/nodes/package_typing.py b/comfy/nodes/package_typing.py index 64a8cff11..21da741c5 100644 --- a/comfy/nodes/package_typing.py +++ b/comfy/nodes/package_typing.py @@ -11,6 +11,7 @@ class CustomNode(Protocol): RETURN_TYPES: ClassVar[Tuple[str]] RETURN_NAMES: ClassVar[Tuple[str]] = None OUTPUT_IS_LIST: ClassVar[Tuple[bool]] = None + INPUT_IS_LIST: ClassVar[bool] = None FUNCTION: ClassVar[str] CATEGORY: ClassVar[str] OUTPUT_NODE: ClassVar[bool] = None