Update script_for_automation.py
Browse files- script_for_automation.py +2 -1
script_for_automation.py
CHANGED
|
@@ -392,7 +392,8 @@ def generate_markdown_output(df):
|
|
| 392 |
# Loop through the differences list
|
| 393 |
for key, value in differences.items():
|
| 394 |
markdown += f"#### {key.capitalize()}\n"
|
| 395 |
-
|
|
|
|
| 396 |
|
| 397 |
# 4. Prompts
|
| 398 |
markdown += "\n## Prompts\n"
|
|
|
|
| 392 |
# Loop through the differences list
|
| 393 |
for key, value in differences.items():
|
| 394 |
markdown += f"#### {key.capitalize()}\n"
|
| 395 |
+
for item in value:
|
| 396 |
+
markdown += f" - {item}\n"
|
| 397 |
|
| 398 |
# 4. Prompts
|
| 399 |
markdown += "\n## Prompts\n"
|