Browse Source

Removed entire __new__() method from SteamUser

`SteamUser` no longer inherits from `int`, and is therefor `__new__` is redundant.
pull/50/head
Cameron 9 years ago
committed by Rossen Georgiev
parent
commit
cd231c2f7f
  1. 3
      steam/client/user.py

3
steam/client/user.py

@ -13,9 +13,6 @@ class SteamUser(object):
steam_id = SteamID()
relationship = EFriendRelationship.No #: friendship status
def __new__(cls, steam_id, *args, **kwargs):
return super(SteamUser, cls).__new__(cls, steam_id)
def __init__(self, steam_id, steam):
self._pstate_ready = Event()
self._steam = steam

Loading…
Cancel
Save