Skip to content

Commit b6fed21

Browse files
committed
pre-commit
1 parent 2eeb95f commit b6fed21

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/groupby/test_reductions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def test_basic_aggregations(dtype):
6767

6868
# corner cases
6969
result = grouped.aggregate(lambda x: x * 2)
70-
expected = pd.Series(
70+
expected = Series(
7171
{
7272
0: data[data.index // 3 == 0] * 2,
7373
1: data[data.index // 3 == 1] * 2,
@@ -76,6 +76,7 @@ def test_basic_aggregations(dtype):
7676
)
7777
tm.assert_series_equal(result, expected)
7878

79+
7980
@pytest.mark.parametrize(
8081
"vals",
8182
[

0 commit comments

Comments
 (0)