From 246920d8b9c33df3deaecc6af3c26ae9d368d499 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Sat, 22 Nov 2025 17:46:28 +0200 Subject: [PATCH] Update nodes.py --- nodes/nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/nodes.py b/nodes/nodes.py index 755aec9..9caec1c 100644 --- a/nodes/nodes.py +++ b/nodes/nodes.py @@ -674,7 +674,7 @@ Converts any type to a string. elif isinstance(input, list): stringified = ', '.join(str(item) for item in input) else: - return + return input, if prefix: # Check if prefix is not empty stringified = prefix + stringified # Add the prefix if suffix: # Check if suffix is not empty