Romain Fayoux
commited on
Commit
·
e184f95
1
Parent(s):
80c8b99
param: limit
Browse files
app.py
CHANGED
|
@@ -113,7 +113,7 @@ def run_and_submit_all(profile: gr.OAuthProfile | None, limit: int | None):
|
|
| 113 |
results_log = []
|
| 114 |
answers_payload = []
|
| 115 |
# Limit and skip youtube for test purposes
|
| 116 |
-
limit =
|
| 117 |
skip_youtube = False
|
| 118 |
if limit is not None:
|
| 119 |
questions_data = questions_data[:limit]
|
|
|
|
| 113 |
results_log = []
|
| 114 |
answers_payload = []
|
| 115 |
# Limit and skip youtube for test purposes
|
| 116 |
+
limit = None
|
| 117 |
skip_youtube = False
|
| 118 |
if limit is not None:
|
| 119 |
questions_data = questions_data[:limit]
|