Skip to content

Commit

Permalink
Long line tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Aug 1, 2022
1 parent f66c986 commit 458ef3b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions Lib/ufo2ft/featureWriters/variableKernWriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ def getKerningGroups(designspace, glyphSet=None):
if name.startswith(SIDE1_PREFIX):
if name in side1Groups and side1Groups[name] != members:
log.warning(
"incompatible left groups: %s was previously %s, %s tried to make it %s",
"incompatible left groups: %s was previously %s,"
" %s tried to make it %s",
name,
side1Groups[name],
font,
Expand All @@ -45,7 +46,8 @@ def getKerningGroups(designspace, glyphSet=None):
elif name.startswith(SIDE2_PREFIX):
if name in side2Groups and side2Groups[name] != members:
log.warning(
"incompatible right groups: %s was previously %s, %s tried to make it %s",
"incompatible right groups: %s was previously %s,"
" %s tried to make it %s",
name,
side2Groups[name],
font,
Expand Down
2 changes: 1 addition & 1 deletion tests/featureWriters/variableFeatureWriter_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ def test_variable_features(FontClass):
} curs;
} curs;
"""
""" # noqa: B950
)
2 changes: 1 addition & 1 deletion tests/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def test_debugFeatureFile(self, designspace):
} mark2base;
} mark;
"""
""" # noqa: B950
)

@pytest.mark.parametrize(
Expand Down

0 comments on commit 458ef3b

Please sign in to comment.