Skip to content

Commit

Permalink
Fixing spaces to match with PEP8. #21510
Browse files Browse the repository at this point in the history
  • Loading branch information
SaturninoMateus committed Jun 19, 2018
1 parent e9561fe commit 53aca81
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pandas/tests/reshape/test_concat.py
Original file line number Diff line number Diff line change
Expand Up @@ -1300,9 +1300,10 @@ def test_concat_with_ordered_dict(self):
result = pd.concat(OrderedDict([('First', pd.Series(range(3))),
('Another', pd.Series(range(4)))]))
index = MultiIndex(levels=[['First', 'Another'], [0, 1, 2, 3]],
labels=[[0, 0, 0, 1, 1, 1, 1], [0, 1, 2, 0, 1, 2, 3]])
labels=[[0, 0, 0, 1, 1, 1, 1],
[0, 1, 2, 0, 1, 2, 3]])
data = list(range(3)) + list(range(4))
expected = pd.Series(data,index=index)
expected = pd.Series(data, index=index)
tm.assert_series_equal(result, expected)

def test_crossed_dtypes_weird_corner(self):
Expand Down

0 comments on commit 53aca81

Please sign in to comment.