Skip to content

Commit ebdbe76

Browse files
committed
Formatting fix
1 parent e6b0e7f commit ebdbe76

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

tidalapi/artist.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import dateutil.parser
2626
from typing_extensions import NoReturn
2727

28-
from tidalapi.exceptions import ObjectNotFound, TooManyRequests, MetadataNotAvailable
28+
from tidalapi.exceptions import MetadataNotAvailable, ObjectNotFound, TooManyRequests
2929
from tidalapi.types import JsonObj
3030

3131
from . 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

tidalapi/media.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)