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 b4d29c3 commit 53e8177Copy full SHA for 53e8177
geoip2/database.py
@@ -16,7 +16,7 @@
16
import geoip2.errors
17
18
19
-class Reader:
+class Reader(object):
20
"""GeoIP2 database Reader object.
21
22
Instances of this class provide a reader for the GeoIP2 database format.
geoip2/mixins.py
@@ -3,7 +3,7 @@
3
from abc import ABCMeta
4
5
6
-class SimpleEquality:
+class SimpleEquality(object):
7
"""Naive __dict__ equality mixin"""
8
9
__metaclass__ = ABCMeta
geoip2/webservice.py
@@ -39,7 +39,7 @@
39
PermissionRequiredError)
40
41
42
-class Client:
+class Client(object):
43
"""Creates a new client object.
44
45
It accepts the following required arguments:
0 commit comments