From 7e9bd0d5333182d1f88a1b9da6352accf30a546f Mon Sep 17 00:00:00 2001 From: rob Date: Sun, 7 Dec 2025 05:34:24 -0400 Subject: [PATCH] made an adjustment to the adjust code instructions --- src/smarttools/ui_urwid.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/smarttools/ui_urwid.py b/src/smarttools/ui_urwid.py index 3ef00c7..2a414b5 100644 --- a/src/smarttools/ui_urwid.py +++ b/src/smarttools/ui_urwid.py @@ -1836,10 +1836,7 @@ class SmartToolsUI: The code runs directly with variable substitution. Assign any "Available Variables" used to a new standard variable first, then use that variable in the code. Use triple quotes and curly braces since the substituted content may contain quotes/newlines. Example: -my_var = \"\"\"{{response}}\"\"\" -filename = \"\"\"{{outputfile}}\"\"\" -with open(filename, 'w') as f: - f.write(my_var) +my_var = \"\"\"{{variable}}\"\"\" INSTRUCTION: [Describe what you want]