Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
100 |
# 5. Submit
|
101 |
print(f"Submitting {len(answers_payload)} answers to: {submit_url}")
|
102 |
try:
|
103 |
-
response = requests.post(submit_url, json=submission_data, timeout=
|
104 |
response.raise_for_status()
|
105 |
result_data = response.json()
|
106 |
final_status = (
|
|
|
100 |
# 5. Submit
|
101 |
print(f"Submitting {len(answers_payload)} answers to: {submit_url}")
|
102 |
try:
|
103 |
+
response = requests.post(submit_url, json=submission_data, timeout=180)
|
104 |
response.raise_for_status()
|
105 |
result_data = response.json()
|
106 |
final_status = (
|