diff options
-rwxr-xr-x | poezio/theming.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/theming.py b/poezio/theming.py index d8720d51..c5df114e 100755 --- a/poezio/theming.py +++ b/poezio/theming.py @@ -574,7 +574,7 @@ def reload_theme() -> Optional[str]: return 'Failed to load theme: %s' % exc if hasattr(new_theme, 'theme'): - theme = new_theme.theme + theme = new_theme.theme # type: ignore prepare_ccolor_palette(theme) return None return 'No theme present in the theme file' |