keynes42 commited on
Commit
60939c5
·
verified ·
1 Parent(s): aa67944

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -313,7 +313,9 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
313
  print(f"An unexpected error occurred fetching questions: {e}")
314
  return f"An unexpected error occurred fetching questions: {e}", None
315
 
316
- questions_data = questions_data[[3,9,11,13,19]] # Find those with attachments
 
 
317
 
318
  # 3. Run your Agent
319
  results_log = []
 
313
  print(f"An unexpected error occurred fetching questions: {e}")
314
  return f"An unexpected error occurred fetching questions: {e}", None
315
 
316
+ questions_data = [questions_data[i] for i in [3,9,11,13,19]]
317
+
318
+ # Find those with attachments
319
 
320
  # 3. Run your Agent
321
  results_log = []