Update app.py
Browse filescommented one missed return from develoment
app.py
CHANGED
@@ -280,7 +280,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
280 |
print("Agent did not produce any answers to submit.")
|
281 |
return "Agent did not produce any answers to submit.", pd.DataFrame(results_log)
|
282 |
|
283 |
-
return "Questions parsed.", pd.DataFrame(results_log)
|
284 |
|
285 |
# 4. Prepare Submission
|
286 |
submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
|
|
|
280 |
print("Agent did not produce any answers to submit.")
|
281 |
return "Agent did not produce any answers to submit.", pd.DataFrame(results_log)
|
282 |
|
283 |
+
# return "Questions parsed.", pd.DataFrame(results_log)
|
284 |
|
285 |
# 4. Prepare Submission
|
286 |
submission_data = {"username": username.strip(), "agent_code": agent_code, "answers": answers_payload}
|