Slight fix to a type annotation
Some checks are pending
Python Linting / Run Ruff (push) Waiting to run
Python Linting / Run Pylint (push) Waiting to run

This commit is contained in:
Jedrzej Kosinski 2026-02-12 22:46:04 -08:00
parent aac40e4fca
commit 0132eb0889

View File

@ -9,7 +9,7 @@ if TYPE_CHECKING:
from nodes import NODE_CLASS_MAPPINGS
class NodeStruct(TypedDict):
inputs: dict[str, str | int | float | tuple[str, int]]
inputs: dict[str, str | int | float | bool | tuple[str, int]]
class_type: str
_meta: dict[str, str]