Skip to content

Commit e80a007

Browse files
committed
Lint
1 parent cb387a7 commit e80a007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lmms_eval/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ def group(arr: Iterable, fn: Callable, values: bool = False) -> Iterable:
964964
for ob in arr:
965965
try:
966966
result = fn(ob)
967-
if hasattr(result, 'items'):
967+
if hasattr(result, "items"):
968968
# If result is a dictionary, convert to hashable tuple
969969
hashable_dict = tuple(
970970
(

0 commit comments

Comments
 (0)