Skip to content

Commit 6d3fe45

Browse files
committed
Formatting
1 parent 91d2287 commit 6d3fe45

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

Lib/fontbakery/checks/typographic_family_name.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ def check_typographic_family_name(ttFonts):
2222
yield FAIL, Message(
2323
"incosistent-family-name",
2424
f"Name ID 16 (Typographic Family name) is not consistent "
25-
f"across fonts. Values found: {sorted(values)}"
25+
f"across fonts. Values found: {sorted(values)}",
2626
)

tests/test_checks_name.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,7 @@ def test_check_typographic_family_name(check, cabin_ttFonts, montserrat_ttFonts)
9393
assert_PASS(check(family), "with a good family...")
9494

9595
assert_results_contain(
96-
check([cabin_ttFonts, montserrat_ttFonts]),
97-
FAIL,
98-
"incosistent-family-name"
96+
check([cabin_ttFonts, montserrat_ttFonts]), FAIL, "incosistent-family-name"
9997
)
10098

10199

0 commit comments

Comments
 (0)