From 3088c303675c160f2c4a554b68131e2e07fbfcf2 Mon Sep 17 00:00:00 2001 From: TSC <112517630+LucianoCirino@users.noreply.github.com> Date: Tue, 18 Jul 2023 18:00:53 -0500 Subject: [PATCH] XY PLot Manual LoRA Entry Fix --- efficiency_nodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/efficiency_nodes.py b/efficiency_nodes.py index 1d21191..0e3eef4 100644 --- a/efficiency_nodes.py +++ b/efficiency_nodes.py @@ -2176,9 +2176,9 @@ class TSC_XYplot_Manual_XY_Entry: # Nest LoRA value in another array to reflect LoRA stack changes if X_type == "LoRA": - X_value = [X_value] + X_value = [[x] for x in X_value] if Y_type == "LoRA": - Y_value = [Y_value] + Y_value = [[y] for y in Y_value] # Clean X/Y_values if X_type == "Nothing":