Skip to content

Commit 9520b64

Browse files
committed
PEP8 fixes
1 parent a5745b3 commit 9520b64

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/tests/groupby/test_groupby.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -2150,12 +2150,13 @@ def test_groupby_bool_aggs(self, agg_func, skipna, vals):
21502150
def test_pct_change(self, test_series, periods, fill_method, limit):
21512151
vals = [np.nan, np.nan, 1, 2, 4, 10, np.nan, np.nan]
21522152
exp_vals = Series(vals).pct_change(periods=periods,
2153-
fill_method=fill_method,
2154-
limit=limit).tolist()
2153+
fill_method=fill_method,
2154+
limit=limit).tolist()
21552155

21562156
df = DataFrame({'key': ['a'] * len(vals) + ['b'] * len(vals),
21572157
'vals': vals * 2})
21582158
grp = df.groupby('key')
2159+
21592160
def get_result(grp_obj):
21602161
return grp_obj.pct_change(periods=periods,
21612162
fill_method=fill_method,

0 commit comments

Comments
 (0)