From e60dbe3a44075ad0b72490755088c2e4e42a1d2f Mon Sep 17 00:00:00 2001 From: Jacob Segal Date: Wed, 21 Feb 2024 19:36:51 -0800 Subject: [PATCH] Fix issue with unused literals Behavior should now match the master branch with regard to undeclared inputs. Undeclared inputs that are socket connections will be used while undeclared inputs that are literals will be ignored. --- execution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution.py b/execution.py index 4d9a4b98c..afedc0758 100644 --- a/execution.py +++ b/execution.py @@ -94,7 +94,7 @@ def get_input_data(inputs, class_def, unique_id, outputs=None, prompt={}, dynpro continue obj = cached_output[output_index] input_data_all[x] = obj - else: + elif input_category is not None: input_data_all[x] = [input_data] if "hidden" in valid_inputs: