diff --git a/blib/__init__.py b/blib/__init__.py index 1b13d19..a45bbda 100644 --- a/blib/__init__.py +++ b/blib/__init__.py @@ -1,7 +1,7 @@ __software__ = "Barkshark Lib" "Name of the library" -__version_info__ = (0, 1, 1) +__version_info__ = (0, 1, 2) "Version of the library" __version__ = ".".join(str(v) for v in __version_info__) diff --git a/blib/icon_theme.py b/blib/icon_theme.py index bd4b4f0..813d975 100644 --- a/blib/icon_theme.py +++ b/blib/icon_theme.py @@ -132,7 +132,7 @@ class IconThemes(dict[str, IconTheme]): :params defualt: Fallback theme to use when searching for icons """ - themes: dict[str, IconTheme] + themes: dict[str, IconTheme] = {} fallback: IconTheme | None = None for path in self.base_path.glob():