From 0132eb088913261a4518e58de032cfc130d6f0e0 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Thu, 12 Feb 2026 22:46:04 -0800 Subject: [PATCH] Slight fix to a type annotation --- app/node_replace_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/node_replace_manager.py b/app/node_replace_manager.py index 26c7440ed..f93e0930d 100644 --- a/app/node_replace_manager.py +++ b/app/node_replace_manager.py @@ -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]