nadim71 commited on
Commit
a524e6b
·
verified ·
1 Parent(s): 24e9a60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -2
app.py CHANGED
@@ -217,11 +217,9 @@ try:
217
  response = requests.get(questions_url, timeout=15)
218
  response.raise_for_status()
219
  questions_data = response.json()
220
-
221
  if not questions_data:
222
  print("Fetched questions list is empty.")
223
  return "Fetched questions list is empty or invalid format.", None
224
-
225
  print(f"Fetched {len(questions_data)} questions.")
226
 
227
  except requests.exceptions.RequestException as e:
 
217
  response = requests.get(questions_url, timeout=15)
218
  response.raise_for_status()
219
  questions_data = response.json()
 
220
  if not questions_data:
221
  print("Fetched questions list is empty.")
222
  return "Fetched questions list is empty or invalid format.", None
 
223
  print(f"Fetched {len(questions_data)} questions.")
224
 
225
  except requests.exceptions.RequestException as e: