olcapone commited on
Commit
156c04d
·
verified ·
1 Parent(s): 4d533a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -382,7 +382,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
382
  response = requests.get(questions_url, timeout=15)
383
  response.raise_for_status()
384
  questions_data = response.json()
385
- questions_data = questions_data[:3]
386
  if not questions_data:
387
  print("Fetched questions list is empty.")
388
  return "Fetched questions list is empty or invalid format.", None
 
382
  response = requests.get(questions_url, timeout=15)
383
  response.raise_for_status()
384
  questions_data = response.json()
385
+ questions_data = questions_data[:4]
386
  if not questions_data:
387
  print("Fetched questions list is empty.")
388
  return "Fetched questions list is empty or invalid format.", None