Update app.py
Browse files
app.py
CHANGED
|
@@ -132,7 +132,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 132 |
)
|
| 133 |
print("Submission successful.")
|
| 134 |
results_df = pd.DataFrame(results_log)
|
| 135 |
-
|
| 136 |
return final_status, results_df
|
| 137 |
except requests.exceptions.HTTPError as e:
|
| 138 |
error_detail = f"Server responded with status {e.response.status_code}."
|
|
|
|
| 132 |
)
|
| 133 |
print("Submission successful.")
|
| 134 |
results_df = pd.DataFrame(results_log)
|
| 135 |
+
print(f"Raw submission result_df: {results_df}")
|
| 136 |
return final_status, results_df
|
| 137 |
except requests.exceptions.HTTPError as e:
|
| 138 |
error_detail = f"Server responded with status {e.response.status_code}."
|