Skip to content

Commit 9dc59f0

Browse files
committed
PEP8 compliance
1 parent 1d4ebf5 commit 9dc59f0

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
@@ -2985,7 +2985,8 @@ def test_duplicate_multiindex_labels(self):
29852985
with pytest.raises(ValueError):
29862986
ind = pd.MultiIndex([['A'] * 10, range(10)], [[0] * 10, range(10)])
29872987
# And that using set_levels with duplicate levels fails
2988-
ind = MultiIndex.from_arrays([['A', 'A', 'B', 'B', 'B'], [1, 2, 1, 2, 3]])
2988+
ind = MultiIndex.from_arrays([['A', 'A', 'B', 'B', 'B'],
2989+
[1, 2, 1, 2, 3]])
29892990
with pytest.raises(ValueError):
29902991
ind.set_levels([['A', 'B', 'A', 'A', 'B'], [2, 1, 3, -2, 5]],
29912992
inplace=True)

0 commit comments

Comments
 (0)