Skip to content

Commit

Permalink
fix unrelated flake8 new complaint about star-arg unpacking after key…
Browse files Browse the repository at this point in the history
…word argument
  • Loading branch information
anthrotype committed Sep 30, 2022
1 parent ac448a8 commit 32f83d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/ufo2ft/filters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ def loadFilters(ufo):
logger.exception("Failed to load filter: %s", pformat(filterDict))
continue
filterObj = filterClass(
*filterDict.get("args", []),
include=filterDict.get("include"),
exclude=filterDict.get("exclude"),
pre=filterDict.get("pre", False),
*filterDict.get("args", []),
**filterDict.get("kwargs", {}),
)
if filterObj.pre:
Expand Down

0 comments on commit 32f83d1

Please sign in to comment.