Fix typo (#2499)
authorOzGav <gavnosp@hotmail.com>
Sun, 12 Oct 2025 12:26:26 +0000 (22:26 +1000)
committerGitHub <noreply@github.com>
Sun, 12 Oct 2025 12:26:26 +0000 (14:26 +0200)
music_assistant/controllers/media/albums.py

index 3d059746783b46a35ccac2718dee10b692e87f43..f71e42e9eaca4d9f8a01e97e44682d44cce23eb5 100644 (file)
@@ -104,7 +104,7 @@ class AlbumsController(MediaControllerBase[Album]):
         extra_query: str | None = None,
         extra_query_params: dict[str, Any] | None = None,
         album_types: list[AlbumType] | None = None,
-    ) -> list[Artist]:
+    ) -> list[Album]:
         """Get in-database albums."""
         extra_query_params: dict[str, Any] = extra_query_params or {}
         extra_query_parts: list[str] = [extra_query] if extra_query else []