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

Skip to content

Commit d457f15

Browse files
committed
Removed flake8: line too long Error
1 parent f524359 commit d457f15

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8863,7 +8863,8 @@ def test_axhvlinespan_interpolation():
88638863
ax.axhspan(.6, .7, .8, .9, fc="C2", alpha=.5)
88648864

88658865

8866-
@image_comparison(["bar_hatchcolor_with_facecolor_and_edgecolor"])
8866+
@image_comparison(["bar_hatchcolor_with_facecolor_and_edgecolor"],
8867+
extensions=["png", "pdf"])
88678868
def test_bar_hatchcolor_with_facecolor_and_edgecolor():
88688869

88698870
x = [2, 3, 4, 5]
@@ -8874,15 +8875,15 @@ def test_bar_hatchcolor_with_facecolor_and_edgecolor():
88748875
hatchcolor="red", edgecolor="black")
88758876

88768877

8877-
@image_comparison(["bar_hatchcolor_with_facecolor"])
8878+
@image_comparison(["bar_hatchcolor_with_facecolor"], extensions=["png", "pdf"])
88788879
def test_bar_hatchcolor_with_facecolor():
88798880
x = [6, 7, 8, 9]
88808881
y = [2, 4, 7, 3]
88818882
fig, ax = plt.subplots()
88828883
ax.bar(x, y, hatch="////", hatchcolor="green", facecolor=(0, 0, 0, 0))
88838884

88848885

8885-
@image_comparison(["bar_hatchcolor"])
8886+
@image_comparison(["bar_hatchcolor"], extensions=["png", "pdf"])
88868887
def test_bar_hatchcolor():
88878888
x = [4, 7, 19, 8]
88888889
y = [1, 5, 8, 14]

0 commit comments

Comments
 (0)