Skip to content

Commit

Permalink
chore: enable more ruff checks
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Jun 21, 2024
1 parent 4d99b2e commit 9ec019b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions oomox_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ def do_export(self) -> None:
if self.export_config[OPTION_FONT_OPTIONS] == VALUE_FONT_NORMALIZE:
export_args.append("--font-weight")
elif self.export_config[OPTION_FONT_OPTIONS] == VALUE_FONT_CUSTOM:
export_args.append("--font")
export_args.append(self.export_config[OPTION_FONT_NAME])
export_args.extend(("--font", self.export_config[OPTION_FONT_NAME]))

self.command = export_args
super().do_export()
Expand Down

0 comments on commit 9ec019b

Please sign in to comment.