This commit is contained in:
justumen
2025-03-19 17:36:25 +01:00
parent 44d69e8907
commit 39dfb0220a
76 changed files with 3207 additions and 955 deletions

View File

@@ -9,6 +9,6 @@ class TextToVariable:
CATEGORY = "Custom"
def process(self, variable_name, text_value):
text_value = text_value.replace("\n", ";")
text_value = text_value.replace("\n", "")
output_string = f"{variable_name} = {text_value}"
return (output_string,)