We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19624ef commit 3f26e42Copy full SHA for 3f26e42
src/lighteval/tasks/registry.py
@@ -360,9 +360,9 @@ def print_all_tasks(self):
360
"""Print all the tasks in the task registry."""
361
362
# Get all tasks
363
- all_tasks = sorted(list(self._task_registry.keys()))
+ all_tasks = sorted(self._task_registry.keys())
364
365
- print(f"Displaying tasks:")
+ print("Displaying tasks:")
366
print("=" * 60)
367
368
last_task = None
0 commit comments