Skip to content

Commit 48053bb

Browse files
committed
fixed flake8 issues
1 parent 5cf6533 commit 48053bb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/tests/test_font_manager.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
import pytest
1212

1313
from matplotlib.font_manager import (
14-
findfont, findSystemFonts, FontEntry, FontProperties, fontManager, json_dump,
15-
json_load, get_font, is_opentype_cff_font, MSUserFontDirectories,
16-
_get_fontconfig_fonts)
14+
findfont, findSystemFonts, FontEntry, FontProperties, fontManager,
15+
json_dump, json_load, get_font, is_opentype_cff_font,
16+
MSUserFontDirectories, _get_fontconfig_fonts)
1717
from matplotlib import pyplot as plt, rc_context
1818

1919
has_fclist = shutil.which('fc-list') is not None
@@ -272,4 +272,4 @@ def test_fontentry_dataclass():
272272
entry = FontEntry(name="font-name")
273273

274274
assert type(entry.__doc__) == str
275-
assert entry._repr_html_() == "<span style='font-family:font-name'>font-name</span>"
275+
assert entry._repr_html_() == "<span style='font-family:font-name'>font-name</span>" # noqa: E501

0 commit comments

Comments
 (0)