From cd231c2f7fe6561db5cf71226ebddce05bf37f20 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 7 Aug 2016 02:04:12 +1000 Subject: [PATCH] Removed entire __new__() method from SteamUser `SteamUser` no longer inherits from `int`, and is therefor `__new__` is redundant. --- steam/client/user.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/steam/client/user.py b/steam/client/user.py index 4d19fb4..6bba4cb 100644 --- a/steam/client/user.py +++ b/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