From 0339a1e064c2332dd2884ddf7e131304a3392977 Mon Sep 17 00:00:00 2001 From: Miguel Sousa Date: Wed, 7 Sep 2022 22:15:28 -0700 Subject: [PATCH] Fix `f-string-without-interpolation` pylint errors --- Lib/fontbakery/profiles/fvar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/fontbakery/profiles/fvar.py b/Lib/fontbakery/profiles/fvar.py index cc0c97062d..5ba9c81253 100644 --- a/Lib/fontbakery/profiles/fvar.py +++ b/Lib/fontbakery/profiles/fvar.py @@ -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}" ) @@ -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}.",