Peter commited on
Commit
42e4d6f
1 Parent(s): cf8b2ce

:lipstick: return sections on newline

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -84,9 +84,9 @@ def proc_submission(
84
  for i, s in enumerate(_summaries)
85
  ]
86
 
87
- sum_text_out = "".join(sum_text)
88
  history["Summary Scores"] = "<br><br>"
89
- scores_out = "".join(sum_scores)
90
  rt = round((time.perf_counter() - st) / 60, 2)
91
  print(f"Runtime: {rt} minutes")
92
  html = ""
 
84
  for i, s in enumerate(_summaries)
85
  ]
86
 
87
+ sum_text_out = "\n".join(sum_text)
88
  history["Summary Scores"] = "<br><br>"
89
+ scores_out = "\n".join(sum_scores)
90
  rt = round((time.perf_counter() - st) / 60, 2)
91
  print(f"Runtime: {rt} minutes")
92
  html = ""