From: Marcel van der Veldt Date: Tue, 6 May 2025 21:12:50 +0000 (+0200) Subject: lint X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=f54da5374f8484a3408c86158c7c0851304a95b0;p=music-assistant-server.git lint --- diff --git a/music_assistant/providers/snapcast/__init__.py b/music_assistant/providers/snapcast/__init__.py index b60c0826..742d7981 100644 --- a/music_assistant/providers/snapcast/__init__.py +++ b/music_assistant/providers/snapcast/__init__.py @@ -460,7 +460,9 @@ class SnapCastProvider(PlayerProvider): async def remove_player(self, player_id: str) -> None: """Remove the client from the snapserver when it is deleted.""" - success, error_msg = await self._snapserver.delete_client(self._get_snapclient_id(player_id)) + success, error_msg = await self._snapserver.delete_client( + self._get_snapclient_id(player_id) + ) if success: self.logger.debug("Snapclient removed %s", player_id) else: