looks better

This commit is contained in:
shenjack 2023-09-02 11:46:55 +08:00
parent f98845d019
commit f96888e487
Signed by: shenjack
GPG Key ID: 7B1134A979775551

View File

@ -46,7 +46,8 @@ class BaseTheme:
self.main_font = main_font
def __repr__(self) -> str:
return f'<{self.__class__.__name__} main_color={self.main_color} secondary_color={self.secondary_color} main_font={self.main_font}>'
return (f'<{self.__class__.__name__} main_color={self.main_color} '
f'secondary_color={self.secondary_color} main_font={self.main_font}>')
class FontTheme(BaseTheme):