Skip to content

Commit f2aa9c7

Browse files
cmazzullojreback
authored andcommitted
PEP8 compliance
1 parent b26c8fc commit f2aa9c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/indexes/test_multi.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -2992,7 +2992,8 @@ def test_duplicate_multiindex_labels(self):
29922992
with pytest.raises(ValueError):
29932993
ind = pd.MultiIndex([['A'] * 10, range(10)], [[0] * 10, range(10)])
29942994
# And that using set_levels with duplicate levels fails
2995-
ind = MultiIndex.from_arrays([['A', 'A', 'B', 'B', 'B'], [1, 2, 1, 2, 3]])
2995+
ind = MultiIndex.from_arrays([['A', 'A', 'B', 'B', 'B'],
2996+
[1, 2, 1, 2, 3]])
29962997
with pytest.raises(ValueError):
29972998
ind.set_levels([['A', 'B', 'A', 'A', 'B'], [2, 1, 3, -2, 5]],
29982999
inplace=True)

0 commit comments

Comments
 (0)