Skip to content

Commit 35deb44

Browse files
committed
Black formating
1 parent 0cd603f commit 35deb44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/groupby/test_groupby.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2062,9 +2062,9 @@ def test_groups_repr_truncates(max_seq_items, expected):
20622062
def test_groupby_period_index():
20632063
# GH 32108
20642064
periods = 2
2065-
index = pd.period_range(start='2018-01', periods=periods, freq='M')
2065+
index = pd.period_range(start="2018-01", periods=periods, freq="M")
20662066
periodSerie = Series(range(periods), index=index)
2067-
periodSerie.index.name = 'Month'
2067+
periodSerie.index.name = "Month"
20682068
result = periodSerie.groupby(periodSerie.index.month).sum()
20692069

20702070
expected = pd.Series(range(0, periods), index=range(1, periods + 1))

0 commit comments

Comments
 (0)