From 51cecd481c6250ba11fd0794ca8d893a365618b5 Mon Sep 17 00:00:00 2001 From: xeisenberg <94274140+xxeisenberg@users.noreply.github.com> Date: Wed, 4 Mar 2026 14:00:11 +0530 Subject: [PATCH] fix: wall not Path type (#89) --- src/caelestia/utils/wallpaper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/caelestia/utils/wallpaper.py b/src/caelestia/utils/wallpaper.py index 6699823..cb3efaf 100644 --- a/src/caelestia/utils/wallpaper.py +++ b/src/caelestia/utils/wallpaper.py @@ -96,6 +96,7 @@ def get_smart_opts(wall: Path, cache: Path) -> str: def get_colours_for_wall(wall: Path | str, no_smart: bool) -> None: + wall = Path(wall) scheme = get_scheme() cache = wallpapers_cache_dir / compute_hash(wall)