Skip to content

Commit 53aca81

Browse files
Fixing spaces to match with PEP8. #21510
1 parent e9561fe commit 53aca81

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/tests/reshape/test_concat.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1300,9 +1300,10 @@ def test_concat_with_ordered_dict(self):
13001300
result = pd.concat(OrderedDict([('First', pd.Series(range(3))),
13011301
('Another', pd.Series(range(4)))]))
13021302
index = MultiIndex(levels=[['First', 'Another'], [0, 1, 2, 3]],
1303-
labels=[[0, 0, 0, 1, 1, 1, 1], [0, 1, 2, 0, 1, 2, 3]])
1303+
labels=[[0, 0, 0, 1, 1, 1, 1],
1304+
[0, 1, 2, 0, 1, 2, 3]])
13041305
data = list(range(3)) + list(range(4))
1305-
expected = pd.Series(data,index=index)
1306+
expected = pd.Series(data, index=index)
13061307
tm.assert_series_equal(result, expected)
13071308

13081309
def test_crossed_dtypes_weird_corner(self):

0 commit comments

Comments
 (0)