From 17af379598ff3d85ea1e01785d280090d2f076c1 Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 8 Sep 2024 15:27:57 +0100 Subject: [PATCH] Appease the linter gods --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index f6b7bc2..5d864c6 100644 --- a/configure.py +++ b/configure.py @@ -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'