From c4023eaa6c8d2e66997fb8ce1afbbdda1bc34766 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Tue, 26 Sep 2023 12:23:32 +0200 Subject: [PATCH] Add a few more type hints --- khal/calendar_display.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/khal/calendar_display.py b/khal/calendar_display.py index 2765ed9dd..8e851bf6a 100644 --- a/khal/calendar_display.py +++ b/khal/calendar_display.py @@ -130,7 +130,7 @@ def str_week( color: str='', highlight_event_days: bool=False, locale=None, - bold_for_light_color=True, + bold_for_light_color: bool=True, ) -> str: """returns a string representing one week, if for day == today color is reversed @@ -178,9 +178,9 @@ def vertical_month(month: Optional[int]=None, multiple: str='', multiple_on_overflow: bool=False, color: str='', - highlight_event_days=False, + highlight_event_days: bool=False, locale=None, - bold_for_light_color=True, + bold_for_light_color: bool=True, ) -> List[str]: """ returns a list() of str() of weeks for a vertical arranged calendar