Skip to content

Commit

Permalink
fix linting... sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed Nov 1, 2024
1 parent 348fba4 commit e2ddf15
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions tests/test_checks_googlefonts.py
Original file line number Diff line number Diff line change
Expand Up @@ -3553,22 +3553,22 @@ def test_check_STAT_gf_axisregistry():

# Let's add a MORF Axis with custom axisvalues
stat = [
dict(
tag="MORF",
name="Morph",
values=[
dict(name="Foo", value=0),
dict(name="Bar", value=100),
{
"tag": "MORF",
"name": "Morph",
"values": [
{"name": "Foo", "value": 0},
{"name": "Bar", "value": 100},
],
),
dict(
tag="wght",
name="Weight",
values=[
dict(name="Regular", value=400, flags=0x2),
dict(name="Bold", value=700),
},
{
"tag": "wght",
"name": "Weight",
"values": [
{"name": "Regular", "value": 400, "flags": 0x2},
{"name": "Bold", "value": 700},
],
),
},
]
buildStatTable(ttFont, stat)
assert_PASS(check(ttFont))
Expand Down

0 comments on commit e2ddf15

Please sign in to comment.