Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -96,7 +96,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 96 |
# 2. Fetch Questions
|
| 97 |
print(f"Fetching questions from: {questions_url}")
|
| 98 |
try:
|
| 99 |
-
response = requests.get(questions_url, timeout=
|
| 100 |
response.raise_for_status()
|
| 101 |
questions_data = response.json()
|
| 102 |
if not questions_data:
|
|
|
|
| 96 |
# 2. Fetch Questions
|
| 97 |
print(f"Fetching questions from: {questions_url}")
|
| 98 |
try:
|
| 99 |
+
response = requests.get(questions_url, timeout=60)
|
| 100 |
response.raise_for_status()
|
| 101 |
questions_data = response.json()
|
| 102 |
if not questions_data:
|