Skip to content

Commit

Permalink
minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
felipesanches committed Dec 28, 2024
1 parent bbd8f4c commit 3bcf33f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A more detailed list of changes is available in the corresponding milestones for
- **[base_has_width]:** Check base characters have non-zero advance width. (issue #4906)

#### Added to the OpenType profile
- **[STAT/ital_axis]**: Replaces the old checks (**opentype/italic_axis_in_stat**, **opentype/italic_axis_in_stat_is_boolean** and **opentype/italic_axis_last**) from the same profile (issue #4865)
- **[STAT/ital_axis]**: Replaces the old checks (**opentype/italic_axis_in_stat**, **opentype/italic_axis_in_stat_is_boolean** and **opentype/italic_axis_last**) from the same profile (issue #4865)

### Migration of checks
#### Moved from Google Fonts to Universal profile
Expand Down
5 changes: 3 additions & 2 deletions Lib/fontbakery/checks/case_mapping.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import unicodedata

from fontbakery.prelude import check, Message, FAIL
from fontbakery.utils import markdown_table


@check(
Expand All @@ -13,8 +16,6 @@
)
def check_case_mapping(ttFont):
"""Ensure the font supports case swapping for all its glyphs."""
import unicodedata
from fontbakery.utils import markdown_table

# These are a selection of codepoints for which the corresponding case-swap
# glyphs are missing way too often on the Google Fonts library,
Expand Down

0 comments on commit 3bcf33f

Please sign in to comment.