Skip to content

Commit 7e379b1

Browse files
committed
black
1 parent 432cd68 commit 7e379b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/tests/groupby/test_counting.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
import numpy as np
44
import pytest
55

6-
from pandas import (DataFrame, Index, MultiIndex, Period, Series, Timedelta,
7-
Timestamp)
6+
from pandas import DataFrame, Index, MultiIndex, Period, Series, Timedelta, Timestamp
87
import pandas._testing as tm
98

109

@@ -226,6 +225,7 @@ def test_count_groupby_column_with_nan_in_groupby_column(self):
226225
# https://github.com/pandas-dev/pandas/issues/32841
227226
df = DataFrame({"A": [1, 1, 1, 1, 1], "B": [5, 4, np.NaN, 3, 0]})
228227
res = df.groupby(["B"]).count()
229-
expected = DataFrame(index=Index([0.0, 3.0, 4.0, 5.0], name="B"),
230-
data={"A": [1, 1, 1, 1]})
228+
expected = DataFrame(
229+
index=Index([0.0, 3.0, 4.0, 5.0], name="B"), data={"A": [1, 1, 1, 1]}
230+
)
231231
tm.assert_frame_equal(expected, res)

0 commit comments

Comments
 (0)