Skip to content

Commit

Permalink
Make fvarInstanceAxisDflts parameter work, see #1069
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Nov 28, 2024
1 parent f0b9df0 commit 92ec25c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/gftools/builder/recipeproviders/googlefonts.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def fix_args(self):
if self.config.get("fvarInstanceAxisDflts"):
args += (
" --fvar-instance-axis-dflts '"
+ self.config["fvarInstanceAxisDflts"]
+ " ".join([f"{k}={v}" for k, v in self.config["fvarInstanceAxisDflts"].items()])
+ "'"
)
return args
Expand Down

0 comments on commit 92ec25c

Please sign in to comment.