From d423dae8ac28ff6348cc162ac882db2dba63a3c3 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Thu, 27 Jun 2024 19:41:21 +0200 Subject: [PATCH] Fix unknown attribute in MPD (#120657) --- homeassistant/components/mpd/media_player.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/homeassistant/components/mpd/media_player.py b/homeassistant/components/mpd/media_player.py index eb34fb6289f..3538b1c7973 100644 --- a/homeassistant/components/mpd/media_player.py +++ b/homeassistant/components/mpd/media_player.py @@ -421,11 +421,6 @@ class MpdDevice(MediaPlayerEntity): """Name of the current input source.""" return self._current_playlist - @property - def source_list(self): - """Return the list of available input sources.""" - return self._playlists - async def async_select_source(self, source: str) -> None: """Choose a different available playlist and play it.""" await self.async_play_media(MediaType.PLAYLIST, source)