Remove dead Last.fm artist band members

This commit is contained in:
hugovk 2017-10-20 00:29:57 +03:00
parent 5ae5f995cd
commit c0a25fbabe
2 changed files with 0 additions and 32 deletions

View file

@ -1738,17 +1738,6 @@ class Artist(_BaseObject, _Taggable):
return self.network._get_url(
domain_name, "artist") % {'artist': artist}
def get_band_members(self):
"""Returns a list of band members or None if unknown."""
names = None
doc = self._request(self.ws_prefix + ".getInfo", True)
for node in doc.getElementsByTagName("bandmembers"):
names = _extract_all(node, "name")
return names
class Country(_BaseObject):
"""A country at Last.fm."""