Skip to content

Commit 895cd01

Browse files
committed
asthetic
1 parent eaf2c25 commit 895cd01

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

tests/test_frame.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1817,14 +1817,8 @@ def test_types_groupby_iter() -> None:
18171817
df = pd.DataFrame(data={"col1": [1, 1, 2], "col2": [3, 4, 5]})
18181818
series_groupby = pd.Series([True, True, False], dtype=bool)
18191819
first_group = next(iter(df.groupby(series_groupby)))
1820-
check(
1821-
assert_type(first_group[0], bool),
1822-
bool,
1823-
)
1824-
check(
1825-
assert_type(first_group[1], pd.DataFrame),
1826-
pd.DataFrame,
1827-
)
1820+
check(assert_type(first_group[0], bool), bool)
1821+
check(assert_type(first_group[1], pd.DataFrame), pd.DataFrame)
18281822

18291823

18301824
def test_types_groupby_level() -> None:

0 commit comments

Comments
 (0)