From 77bda5b92366a2be65403910c22b8b5fb799e771 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 14 Jan 2016 15:00:19 +0000 Subject: [PATCH] clean up SteamID --- steam/steamid.py | 31 ++----------------------------- 1 file changed, 2 insertions(+), 29 deletions(-) diff --git a/steam/steamid.py b/steam/steamid.py index 65a5e47..08f5625 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -56,38 +56,11 @@ class SteamID(int): return "<%s(id=%s, type=%s, universe=%s, instance=%s)>" % ( self.__class__.__name__, self.id, - repr(str(self.type)), - repr(str(self.universe)), + repr(self.type.name), + repr(self.universe.name), self.instance, ) -# def __str__(self): -# return str(self.as_64) -# -# def __int__(self): -# return self.as_64 -# -# def __eq__(self, other): -# return int(self) == int(other) -# -# def __ne__(self, other): -# return int(self) != int(other) -# -# def __lt__(self, other): -# return int(self) < int(other) -# -# def __le__(self, other): -# return int(self) <= int(other) -# -# def __gt__(self, other): -# return int(self) > int(other) -# -# def __ge__(self, other): -# return int(self) >= int(other) -# -# def __hash__(self): -# return hash(self.as_64) - @property def id(self): return int(self) & 0xFFffFFff