rosemariafontana commited on
Commit
4e25f40
·
verified ·
1 Parent(s): 1df27f0

Update script_for_automation.py

Browse files
Files changed (1) hide show
  1. 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 = json.loads(row['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"]: