Skip to content

Commit

Permalink
Appease the linter gods
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 8, 2024
1 parent f5e882b commit 17af379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def configure(args):

# Create aliases for our light-blue and dark-blue styles to light and dark.
# Only create aliases if light-blue and/or dark-blue are to be built.
themes = [theme for theme in args.styles if theme == 'dark-blue' or theme == 'light-blue']
themes = [theme for theme in args.styles if theme in ('dark-blue', 'light-blue')]
for theme in themes:
source = args.output_dir / theme / 'stylesheet.qss'
destination = args.output_dir / theme.split('-')[0] / 'stylesheet.qss'
Expand Down

0 comments on commit 17af379

Please sign in to comment.