From 17a5ab1ab8a4fb34eba180c4c66fa1ae9f13e82d Mon Sep 17 00:00:00 2001 From: Joseph Aylett-Bullock Date: Thu, 13 Oct 2022 14:06:01 -0400 Subject: [PATCH] black passing --- test_june/unit/groups/test_make_subgroups.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/test_june/unit/groups/test_make_subgroups.py b/test_june/unit/groups/test_make_subgroups.py index 38a24bbb1..5f1bd4e8d 100644 --- a/test_june/unit/groups/test_make_subgroups.py +++ b/test_june/unit/groups/test_make_subgroups.py @@ -55,6 +55,15 @@ def test__make_subgroups(super_group): def test_excel_cols(): - assert list( - itertools.islice(make_subgroups.SubgroupParams().excel_cols(), 10) - ) == ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J"] + assert list(itertools.islice(make_subgroups.SubgroupParams().excel_cols(), 10)) == [ + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + ]