Skip to content

Commit

Permalink
Fix f-string-without-interpolation pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelsousa authored and felipesanches committed Sep 8, 2022
1 parent e8199f1 commit 0339a1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/fontbakery/profiles/fvar.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def com_adobe_fonts_check_varfont_valid_default_instance_nameids(ttFont,

if subfam_name != font_subfam_name:
yield FAIL, Message(
f"invalid-default-instance-subfamily-name",
"invalid-default-instance-subfamily-name",
f"{subfam_name!r} instance has the same coordinates as the default"
f" instance; its subfamily name should be {font_subfam_name!r}"
)
Expand All @@ -481,7 +481,7 @@ def com_adobe_fonts_check_varfont_valid_default_instance_nameids(ttFont,
# at least one instance record includes it
if font_includes_ps_nameid and postscript_name != name6:
yield FAIL, Message(
f"invalid-default-instance-postscript-name",
"invalid-default-instance-postscript-name",
f"{subfam_name!r} instance has the same coordinates as the default"
f" instance; its postscript name should be {name6!r}, instead of"
f" {postscript_name!r}.",
Expand Down

0 comments on commit 0339a1e

Please sign in to comment.