Events and tags are now hashable
This commit is contained in:
parent
c3bf1f0a06
commit
3257a2b178
|
@ -1189,6 +1189,7 @@ class Album(_BaseObject, _Taggable):
|
||||||
title = None
|
title = None
|
||||||
artist = None
|
artist = None
|
||||||
username = None
|
username = None
|
||||||
|
|
||||||
__hash__ = _BaseObject.__hash__
|
__hash__ = _BaseObject.__hash__
|
||||||
|
|
||||||
def __init__(self, artist, title, network, username=None):
|
def __init__(self, artist, title, network, username=None):
|
||||||
|
@ -1359,6 +1360,7 @@ class Artist(_BaseObject, _Taggable):
|
||||||
|
|
||||||
name = None
|
name = None
|
||||||
username = None
|
username = None
|
||||||
|
|
||||||
__hash__ = _BaseObject.__hash__
|
__hash__ = _BaseObject.__hash__
|
||||||
|
|
||||||
def __init__(self, name, network, username=None):
|
def __init__(self, name, network, username=None):
|
||||||
|
@ -1674,6 +1676,8 @@ class Event(_BaseObject):
|
||||||
|
|
||||||
id = None
|
id = None
|
||||||
|
|
||||||
|
__hash__ = _BaseObject.__hash__
|
||||||
|
|
||||||
def __init__(self, event_id, network):
|
def __init__(self, event_id, network):
|
||||||
_BaseObject.__init__(self, network)
|
_BaseObject.__init__(self, network)
|
||||||
|
|
||||||
|
@ -2265,6 +2269,8 @@ class Tag(_BaseObject):
|
||||||
|
|
||||||
name = None
|
name = None
|
||||||
|
|
||||||
|
__hash__ = _BaseObject.__hash__
|
||||||
|
|
||||||
def __init__(self, name, network):
|
def __init__(self, name, network):
|
||||||
_BaseObject.__init__(self, network)
|
_BaseObject.__init__(self, network)
|
||||||
|
|
||||||
|
@ -2408,6 +2414,7 @@ class Track(_BaseObject, _Taggable):
|
||||||
artist = None
|
artist = None
|
||||||
title = None
|
title = None
|
||||||
username = None
|
username = None
|
||||||
|
|
||||||
__hash__ = _BaseObject.__hash__
|
__hash__ = _BaseObject.__hash__
|
||||||
|
|
||||||
def __init__(self, artist, title, network, username=None):
|
def __init__(self, artist, title, network, username=None):
|
||||||
|
@ -2857,6 +2864,7 @@ class User(_BaseObject):
|
||||||
"""A Last.fm user."""
|
"""A Last.fm user."""
|
||||||
|
|
||||||
name = None
|
name = None
|
||||||
|
|
||||||
__hash__ = _BaseObject.__hash__
|
__hash__ = _BaseObject.__hash__
|
||||||
|
|
||||||
def __init__(self, user_name, network):
|
def __init__(self, user_name, network):
|
||||||
|
|
Loading…
Reference in a new issue