Spaces:
Sleeping
Sleeping
Peter
commited on
Commit
·
0d920b9
1
Parent(s):
acfb52b
fix online editing bug with spacing
Browse files
app.py
CHANGED
@@ -84,11 +84,9 @@ def proc_submission(
|
|
84 |
for i, s in enumerate(_summaries)
|
85 |
]
|
86 |
|
87 |
-
sum_text_out = "
|
88 |
-
".join(sum_text)
|
89 |
history["Summary Scores"] = "<br><br>"
|
90 |
-
scores_out = "
|
91 |
-
".join(sum_scores)
|
92 |
rt = round((time.perf_counter() - st) / 60, 2)
|
93 |
print(f"Runtime: {rt} minutes")
|
94 |
html = ""
|
|
|
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 = ""
|