File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525import dateutil .parser
2626from typing_extensions import NoReturn
2727
28- from tidalapi .exceptions import ObjectNotFound , TooManyRequests , MetadataNotAvailable
28+ from tidalapi .exceptions import MetadataNotAvailable , ObjectNotFound , TooManyRequests
2929from tidalapi .types import JsonObj
3030
3131from . import mix
@@ -229,7 +229,8 @@ def get_similar(self) -> List["Artist"]:
229229 )
230230
231231 def get_radio (self , limit : int = 100 ) -> List ["Track" ]:
232- """Queries TIDAL for the artist radio, i.e. a list of tracks similar to this artist.
232+ """Queries TIDAL for the artist radio, i.e. a list of tracks similar to this
233+ artist.
233234
234235 :return: A list of :class:`Tracks <tidalapi.media.Track>`
235236 """
@@ -250,7 +251,8 @@ def get_radio(self, limit: int = 100) -> List["Track"]:
250251 return cast (List ["Track" ], radio )
251252
252253 def get_radio_mix (self ) -> mix .Mix :
253- """Queries TIDAL for the artist radio, i.e. mix of tracks that are similar to this artist.
254+ """Queries TIDAL for the artist radio, i.e. mix of tracks that are similar to
255+ this artist.
254256
255257 :return: A :class:`Mix <tidalapi.mix.Mix>`
256258 :raises: A :class:`exceptions.MetadataNotAvailable` if no track radio mix is available
Original file line number Diff line number Diff line change @@ -387,7 +387,8 @@ def lyrics(self) -> "Lyrics":
387387 return cast ("Lyrics" , lyrics )
388388
389389 def get_track_radio (self , limit : int = 100 ) -> List ["Track" ]:
390- """Queries TIDAL for the track radio mix as a list of tracks similar to this track.
390+ """Queries TIDAL for the track radio mix as a list of tracks similar to this
391+ track.
391392
392393 :return: A list of :class:`Tracks <tidalapi.media.Track>`
393394 :raises: A :class:`exceptions.MetadataNotAvailable` if no track radio mix is available
@@ -409,7 +410,8 @@ def get_track_radio(self, limit: int = 100) -> List["Track"]:
409410 return cast (List ["Track" ], tracks )
410411
411412 def get_radio_mix (self ) -> mix .Mix :
412- """Queries TIDAL for the track radio mix of tracks that are similar to this track.
413+ """Queries TIDAL for the track radio mix of tracks that are similar to this
414+ track.
413415
414416 :return: A :class:`Mix <tidalapi.mix.Mix>`
415417 :raises: A :class:`exceptions.MetadataNotAvailable` if no track radio mix is available
You can’t perform that action at this time.
0 commit comments