Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 14442a0

Browse files
committed
flake8
1 parent 3fcf814 commit 14442a0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/matplotlib/tests/test_contour.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,8 @@ def test_contour_legend_elements():
535535
for a, c in zip(artists, colors))
536536

537537

538-
@pytest.mark.parametrize("algorithm, klass",
538+
@pytest.mark.parametrize(
539+
"algorithm, klass",
539540
[('mpl2005', contourpy.Mpl2005ContourGenerator),
540541
('mpl2014', contourpy.Mpl2014ContourGenerator),
541542
('serial', contourpy.SerialContourGenerator),
@@ -551,8 +552,8 @@ def test_algorithm_name(algorithm, klass):
551552
plt.contourf(z, algorithm=algorithm)
552553

553554

554-
@pytest.mark.parametrize("algorithm",
555-
['mpl2005', 'mpl2014', 'serial', 'threaded'])
555+
@pytest.mark.parametrize(
556+
"algorithm", ['mpl2005', 'mpl2014', 'serial', 'threaded'])
556557
def test_algorithm_supports_corner_mask(algorithm):
557558
z = np.array([[1.0, 2.0], [3.0, 4.0]])
558559

0 commit comments

Comments
 (0)