Skip to content

Commit fb988ce

Browse files
committed
fixed lint error
1 parent 0937a43 commit fb988ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/groupby/test_grouping.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ def test_gb_key_len_equal_axis_len(self):
666666
df = pd.DataFrame([['foo', 'bar', 'B', 1],
667667
['foo', 'bar', 'B', 2],
668668
['foo', 'baz', 'C', 3]],
669-
columns=['first', 'second', 'third', 'one'])
669+
columns=['first', 'second', 'third', 'one'])
670670
df = df.set_index(['first', 'second'])
671671
df = df.groupby(['first', 'second', 'third']).size()
672672
assert df.loc[('foo', 'bar', 'B')] == 2

0 commit comments

Comments
 (0)