Spaces:
Sleeping
Sleeping
Commit ·
a59b8ec
1
Parent(s): cd6351a
fix indentation in main loop
Browse files- inference.py +1 -1
inference.py
CHANGED
|
@@ -275,7 +275,7 @@ async def main() -> None:
|
|
| 275 |
Otherwise run all three in sequence so all 3 tasks produce scores.
|
| 276 |
"""
|
| 277 |
try:
|
| 278 |
-
|
| 279 |
for difficulty in ("easy", "medium", "hard"):
|
| 280 |
await run_task(difficulty)
|
| 281 |
print("", flush=True)
|
|
|
|
| 275 |
Otherwise run all three in sequence so all 3 tasks produce scores.
|
| 276 |
"""
|
| 277 |
try:
|
| 278 |
+
# Always run all 3 tasks — validator counts 3 [END] lines
|
| 279 |
for difficulty in ("easy", "medium", "hard"):
|
| 280 |
await run_task(difficulty)
|
| 281 |
print("", flush=True)
|