Skip to content

Commit 5e2ad52

Browse files
committed
run ruff
1 parent 1cc47f6 commit 5e2ad52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/data/test_data_handler.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,6 @@ def test_few_shot_split(dataset):
239239
}
240240

241241
for data_split in dh.dataset:
242-
assert Counter(dh.dataset[data_split][dh.dataset.label_feature]) == desired_specs[data_split], (
243-
f"Failed for {data_split}"
244-
)
242+
assert (
243+
Counter(dh.dataset[data_split][dh.dataset.label_feature]) == desired_specs[data_split]
244+
), f"Failed for {data_split}"

0 commit comments

Comments
 (0)