Skip to content

Commit 94a9c95

Browse files
committed
PEP8 compliance
1 parent e568a5a commit 94a9c95

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
@@ -3090,7 +3090,8 @@ def test_duplicate_multiindex_labels(self):
30903090
with pytest.raises(ValueError):
30913091
ind = pd.MultiIndex([['A'] * 10, range(10)], [[0] * 10, range(10)])
30923092
# And that using set_levels with duplicate levels fails
3093-
ind = MultiIndex.from_arrays([['A', 'A', 'B', 'B', 'B'], [1, 2, 1, 2, 3]])
3093+
ind = MultiIndex.from_arrays([['A', 'A', 'B', 'B', 'B'],
3094+
[1, 2, 1, 2, 3]])
30943095
with pytest.raises(ValueError):
30953096
ind.set_levels([['A', 'B', 'A', 'A', 'B'], [2, 1, 3, -2, 5]],
30963097
inplace=True)

0 commit comments

Comments
 (0)