Skip to content

Commit

Permalink
Netradio supports SONG and ALBUM functions on some devices
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdwetering committed Mar 1, 2024
1 parent d9a2079 commit 87c137c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ynca/subunits/netradio.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

from ..constants import Subunit
from ..subunit import SubunitBase
from . import PlaybackFunctionMixin, PlaybackInfoFunctionMixin, StationFunctionMixin
from . import AlbumFunctionMixin, PlaybackFunctionMixin, PlaybackInfoFunctionMixin, SongFunctionMixin, StationFunctionMixin


class NetRadio(
AlbumFunctionMixin,
PlaybackFunctionMixin,
PlaybackInfoFunctionMixin,
SongFunctionMixin,
StationFunctionMixin,
SubunitBase,
):
Expand Down

0 comments on commit 87c137c

Please sign in to comment.