Skip to content

Commit 6bbd04e

Browse files
committed
Fix pep8
1 parent 24325da commit 6bbd04e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lib/matplotlib/tests/test_legend.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,9 @@ def test_no_warn_big_data_when_loc_specified():
673673
fig.draw_artist(legend) # Check that no warning is emitted.
674674

675675

676-
@pytest.mark.parametrize('label_array', [['low', 'high'], ('low', 'high'), np.array(['low', 'high'])])
676+
@pytest.mark.parametrize('label_array', [['low', 'high'],
677+
('low', 'high'),
678+
np.array(['low', 'high'])])
677679
def test_plot_multiple_input_multiple_label(label_array):
678680
# test ax.plot() with multidimensional input
679681
# and multiple labels
@@ -705,7 +707,9 @@ def test_plot_multiple_input_single_label(label):
705707
assert legend_texts == [str(label)] * 2
706708

707709

708-
@pytest.mark.parametrize('label_array', [['low', 'high'], ('low', 'high'), np.array(['low', 'high'])])
710+
@pytest.mark.parametrize('label_array', [['low', 'high'],
711+
('low', 'high'),
712+
np.array(['low', 'high'])])
709713
def test_plot_single_input_multiple_label(label_array):
710714
# test ax.plot() with 1D array like input
711715
# and iterable label

0 commit comments

Comments
 (0)