Skip to content

Commit 169451d

Browse files
committed
Fixed flake8 issues with test_figure.py
1 parent f7a6310 commit 169451d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/tests/test_figure.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -561,8 +561,8 @@ def test_savefig_pixel_ratio(backend):
561561
extensions=['png'], savefig_kwarg={'transparent': True},
562562
remove_text=True)
563563
def test_savefig_transparent():
564-
# create two transparent subfigures with corresponding transparent inset axes.
565-
# the entire background of the image should be transparent.
564+
# create two transparent subfigures with corresponding transparent inset
565+
# axes. the entire background of the image should be transparent.
566566
fig = plt.gcf()
567567
gs = fig.add_gridspec(3, 3)
568568
fig.add_subfigure(gs[0, 0])
@@ -573,7 +573,7 @@ def test_savefig_transparent():
573573
fig.add_subplot(gs[0:2, 1])
574574
ax2 = plt.gca()
575575
ax2.inset_axes([.1, .2, .3, .4])
576-
576+
577577

578578
def test_figure_repr():
579579
fig = plt.figure(figsize=(10, 20), dpi=10)

0 commit comments

Comments
 (0)