Update script_for_automation.py
Browse files- script_for_automation.py +1 -1
script_for_automation.py
CHANGED
|
@@ -378,7 +378,7 @@ def generate_markdown_output(df):
|
|
| 378 |
|
| 379 |
for _, row in df.iterrows():
|
| 380 |
# Assuming 'Differences' is a list of dictionaries with keys and changes
|
| 381 |
-
differences =
|
| 382 |
for diff in differences:
|
| 383 |
if diff.get("values_changed"):
|
| 384 |
for change in diff["values_changed"]:
|
|
|
|
| 378 |
|
| 379 |
for _, row in df.iterrows():
|
| 380 |
# Assuming 'Differences' is a list of dictionaries with keys and changes
|
| 381 |
+
differences = row['Differences']
|
| 382 |
for diff in differences:
|
| 383 |
if diff.get("values_changed"):
|
| 384 |
for change in diff["values_changed"]:
|