Skip to content

Commit

Permalink
Fix flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
black7375 committed Jan 28, 2025
1 parent f976349 commit 201c6d6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion Lib/glyphsLib/builder/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@
"IRI": 0x083C,
"ISL": 0x040F,
"ITA": 0x0410,
"ITA": 0x0410,
"IWR": 0x040D,
"JPN": 0x0411,
"KAN": 0x044B,
Expand Down
2 changes: 1 addition & 1 deletion Lib/glyphsLib/builder/glyph.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def _clone_layer(layer, paths=None, components=None):
# And this forum post:
# https://forum.glyphsapp.com/t/unicode-variation-selector-u-fe01/21701
USV_MAP = {
f".uv{i+1:03}": f"{c:04X}"
f".uv{i + 1:03}": f"{c:04X}"
for i, c in enumerate(
itertools.chain(range(0xFE00, 0xFE0F + 1), range(0xE0100, 0xE01EF + 1))
)
Expand Down

0 comments on commit 201c6d6

Please sign in to comment.