Update app.py
Browse files
app.py
CHANGED
|
@@ -159,7 +159,7 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
| 159 |
|
| 160 |
print(f"Fetching questions from: {questions_url}")
|
| 161 |
try:
|
| 162 |
-
response = requests.get(questions_url, timeout=
|
| 163 |
response.raise_for_status()
|
| 164 |
questions_data = response.json()
|
| 165 |
if not questions_data:
|
|
|
|
| 159 |
|
| 160 |
print(f"Fetching questions from: {questions_url}")
|
| 161 |
try:
|
| 162 |
+
response = requests.get(questions_url, timeout=60)
|
| 163 |
response.raise_for_status()
|
| 164 |
questions_data = response.json()
|
| 165 |
if not questions_data:
|