Skip to content

Commit

Permalink
fixed typing
Browse files Browse the repository at this point in the history
  • Loading branch information
geier committed Oct 29, 2023
1 parent 0edeb7e commit 94a7b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion khal/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ def _load_color_themes() -> dict[str, Mapping[str, Tuple[str, str, str, str, str
color_theme_entrypoints = importlib_metadata.entry_points(group="khal.color_theme")
return {ep.name: ep.load() for ep in color_theme_entrypoints}

THEMES: Mapping[str, Mapping[str, dict[str, Tuple[str, str, str, str, str]]]] = _load_color_themes()
THEMES: dict[str, Mapping[str, Tuple[str, str, str, str, str]]] = _load_color_themes()

0 comments on commit 94a7b9e

Please sign in to comment.