Skip to content

Commit

Permalink
Actually, less than 24, not less or equal 24
Browse files Browse the repository at this point in the history
  • Loading branch information
yanone committed May 15, 2024
1 parent 7d76dad commit 01169ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/fontbakery/checks/universal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2870,7 +2870,7 @@ def com_google_fonts_check_missing_small_caps_glyphs(ttFont):
# Font has incomplete legacy Greek coverage, so ignore Greek dynamically
# (minimal Greek coverage is 2x24=48 characters, so we assume incomplete
# if coverage is less than half of 48)
if 0 < len(characters_per_script(ttFont, "Greek")) <= 24:
if 0 < len(characters_per_script(ttFont, "Greek")) < 24:
exceptions_smcp.extend(characters_per_script(ttFont, "Greek", "Ll"))
exceptions_c2sc.extend(characters_per_script(ttFont, "Greek", "Lu"))

Expand Down

0 comments on commit 01169ab

Please sign in to comment.