Skip to content

Commit

Permalink
this is the code-massaging I hoped should not be done to make linters…
Browse files Browse the repository at this point in the history
… happy
  • Loading branch information
felipesanches committed Dec 22, 2023
1 parent 2192443 commit b443e3b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Lib/fontbakery/profiles/opentype/os2.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
from fontbakery.callable import check
from fontbakery.status import FAIL, PASS, WARN, INFO, SKIP
from fontbakery.message import Message
from fontbakery.profiles.googlefonts_conditions import RIBBI_ttFonts
from fontbakery.profiles.googlefonts_conditions import ( # noqa:F401,E501 pylint:disable=W0611
RIBBI_ttFonts,
)


@check(
Expand Down Expand Up @@ -245,7 +247,9 @@ def com_adobe_fonts_check_fsselection_matches_macstyle(ttFont):
""",
proposal="https://github.com/fonttools/fontbakery/pull/2388",
)
def com_adobe_fonts_check_family_bold_italic_unique_for_nameid1(RIBBI_ttFonts):
def com_adobe_fonts_check_family_bold_italic_unique_for_nameid1(
RIBBI_ttFonts, # noqa:F811
):
"""Check that OS/2.fsSelection bold & italic settings are unique
for each NameID1"""
from collections import Counter
Expand Down

0 comments on commit b443e3b

Please sign in to comment.