We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd2fd01 commit 1105355Copy full SHA for 1105355
coderwall.py
@@ -17,7 +17,7 @@
17
import urllib2 as urllib_request
18
urllib_error = urllib_request
19
20
-class CoderWall:
+class CoderWall(object):
21
22
"""
23
Represents a CoderWall user and provides access to all of the user's data.
@@ -72,7 +72,7 @@ def __repr__(self):
72
def __str__(self):
73
return self.name + ' (' + self.username + '), ' + self.location + ', Endorsed ' + str(self.endorsements) + ' times: ' + str(self.badges)
74
75
-class Badge:
+class Badge(object):
76
77
78
Represents a CoderWall badge and provides access to its attributes, such as
0 commit comments