Skip to content

Commit 8cf741b

Browse files
committed
pep 8 fixes
1 parent d4bb7f6 commit 8cf741b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pandas/tools/tests/test_pivot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ def _check_output(result, values_col, index=['A', 'B'],
350350
# no rows
351351
rtable = self.data.pivot_table(columns=['AA', 'BB'], margins=True,
352352
aggfunc=np.mean)
353-
expected = self.data.groupby(['AA','BB']).mean()
353+
expected = self.data.groupby(['AA', 'BB']).mean()
354354
expected.loc[('All', ''), :] = self.data[['DD', 'EE', 'FF']].mean()
355355
expected = (expected.stack()
356356
.unstack(['BB', 'AA'])

0 commit comments

Comments
 (0)