Skip to content

Commit 3f26e42

Browse files
committed
fix(tasks): remove suites in listing tasks
1 parent 19624ef commit 3f26e42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lighteval/tasks/registry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,9 +360,9 @@ def print_all_tasks(self):
360360
"""Print all the tasks in the task registry."""
361361

362362
# Get all tasks
363-
all_tasks = sorted(list(self._task_registry.keys()))
363+
all_tasks = sorted(self._task_registry.keys())
364364

365-
print(f"Displaying tasks:")
365+
print("Displaying tasks:")
366366
print("=" * 60)
367367

368368
last_task = None

0 commit comments

Comments
 (0)