add missing type

This commit is contained in:
Benjamin Berman 2023-08-02 16:46:53 -07:00
parent 81c9a7c561
commit 82d0edf121

View File

@ -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