@@ -76,8 +76,7 @@ def parse_artists(self, json_obj) -> List["Artist"]:
7676 inside of the python tidalapi module.
7777
7878 :param json_obj: Json data returned from api.tidal.com containing an artist
79- :return: Returns a copy of the original
80- :exc: 'Artist': object
79+ :return: Returns a copy of the original :exc: 'Artist': object
8180 """
8281 return list (map (self .parse_artist , json_obj ))
8382
@@ -89,35 +88,31 @@ def _get_albums(self, params=None):
8988 def get_albums (self , limit = None , offset = 0 ):
9089 """Queries TIDAL for the artists albums.
9190
92- :return: A list of
93- :class:`Albums<tidalapi.album.Album>`
91+ :return: A list of :class:`Albums<tidalapi.album.Album>`
9492 """
9593 params = {"limit" : limit , "offset" : offset }
9694 return self ._get_albums (params )
9795
9896 def get_albums_ep_singles (self , limit = None , offset = 0 ):
9997 """Queries TIDAL for the artists extended plays and singles.
10098
101- :return: A list of
102- :class:`Albums <tidalapi.album.Album>`
99+ :return: A list of :class:`Albums <tidalapi.album.Album>`
103100 """
104101 params = {"filter" : "EPSANDSINGLES" , "limit" : limit , "offset" : offset }
105102 return self ._get_albums (params )
106103
107104 def get_albums_other (self , limit = None , offset = 0 ):
108105 """Queries TIDAL for albums the artist has appeared on as a featured artist.
109106
110- :return: A list of
111- :class:`Albums <tidalapi.album.Album>`
107+ :return: A list of :class:`Albums <tidalapi.album.Album>`
112108 """
113109 params = {"filter" : "COMPILATIONS" , "limit" : limit , "offset" : offset }
114110 return self ._get_albums (params )
115111
116112 def get_top_tracks (self , limit = None , offset = 0 ):
117113 """Queries TIDAL for the artists tracks, sorted by popularity.
118114
119- :return: A list of
120- :class:`Tracks <tidalapi.media.Track>`
115+ :return: A list of :class:`Tracks <tidalapi.media.Track>`
121116 """
122117 params = {"limit" : limit , "offset" : offset }
123118 return self .request .map_request (
@@ -129,8 +124,7 @@ def get_top_tracks(self, limit=None, offset=0):
129124 def get_videos (self , limit = None , offset = 0 ):
130125 """Queries tidal for the artists videos.
131126
132- :return: A list of
133- :class:`Videos <tidalapi.media.Video>`
127+ :return: A list of :class:`Videos <tidalapi.media.Video>`
134128 """
135129 params = {"limit" : limit , "offset" : offset }
136130 return self .request .map_request (
@@ -149,8 +143,7 @@ def get_bio(self):
149143 def get_similar (self ):
150144 """Queries TIDAL for similar artists.
151145
152- :return: A list of
153- :class:`Artists <tidalapi.artist.Artist>`
146+ :return: A list of :class:`Artists <tidalapi.artist.Artist>`
154147 """
155148 return self .request .map_request (
156149 "artists/%s/similar" % self .id , parse = self .parse_artist
@@ -160,8 +153,7 @@ def get_radio(self):
160153 """Queries TIDAL for the artist radio, which is a mix of tracks that are similar
161154 to what the artist makes.
162155
163- :return: A list of
164- :class:`Tracks <tidalapi.media.Track>`
156+ :return: A list of :class:`Tracks <tidalapi.media.Track>`
165157 """
166158 params = {"limit" : 100 }
167159 return self .request .map_request (
0 commit comments