Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt committed Feb 26, 2024
1 parent e6e7ab1 commit 8c4b15f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions custom_components/mass/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ def extra_state_attributes(self) -> Mapping[str, Any]:
and queue.current_item.media_item
and queue.current_item.media_item.metadata
):
attrs[ATTR_STREAM_TITLE] = (
queue.current_item.media_item.metadata.description
)
attrs[
ATTR_STREAM_TITLE
] = queue.current_item.media_item.metadata.description
return attrs

async def async_on_update(self) -> None:
Expand Down

0 comments on commit 8c4b15f

Please sign in to comment.