Update app.py
Browse files
app.py
CHANGED
@@ -143,7 +143,7 @@ async def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
143 |
response.raise_for_status()
|
144 |
questions_data = response.json()
|
145 |
|
146 |
-
selected_indices = [0, 2, 4, 6,
|
147 |
questions_data = [questions_data[i] for i in selected_indices if i < len(questions_data)]
|
148 |
|
149 |
if not questions_data:
|
|
|
143 |
response.raise_for_status()
|
144 |
questions_data = response.json()
|
145 |
|
146 |
+
selected_indices = [0, 2, 4, 6, 10, 12, 14, 15, 16, 17] # Replace with the indices you want
|
147 |
questions_data = [questions_data[i] for i in selected_indices if i < len(questions_data)]
|
148 |
|
149 |
if not questions_data:
|