From 98c1fb17c5243c677a0903c3f71e1ff6e44e6141 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Sun, 4 Aug 2024 20:13:56 +0300 Subject: [PATCH] support tensors --- nodes/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/nodes.py b/nodes/nodes.py index ba5d907..8aef817 100644 --- a/nodes/nodes.py +++ b/nodes/nodes.py @@ -756,7 +756,7 @@ The 'any_input' is required for making sure the node you want the value from exi if node["id"] == id: node_id = id break - elif any_input: + elif any_input is not None: if node["type"] == "WidgetToString" and node["id"] == int(unique_id) and not link_id: for node_input in node["inputs"]: link_id = node_input["link"]