Skip to content

Commit

Permalink
Add a few more type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
WhyNotHugo committed Sep 26, 2023
1 parent be4b385 commit c4023ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions khal/calendar_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit c4023ea

Please sign in to comment.