olcapone commited on
Commit
462cb9b
·
verified ·
1 Parent(s): fc21478

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -203,7 +203,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
203
  response = requests.get(questions_url, timeout=15)
204
  response.raise_for_status()
205
  questions_data = response.json()
206
- questions_data = questions_data[:1]
207
  if not questions_data:
208
  print("Fetched questions list is empty.")
209
  return "Fetched questions list is empty or invalid format.", None
 
203
  response = requests.get(questions_url, timeout=15)
204
  response.raise_for_status()
205
  questions_data = response.json()
206
+ questions_data = questions_data[:2]
207
  if not questions_data:
208
  print("Fetched questions list is empty.")
209
  return "Fetched questions list is empty or invalid format.", None