Skip to content

Commit 319a60f

Browse files
committed
Do not subclass object explicitly
1 parent a46d555 commit 319a60f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

geoip2/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
)
3636

3737

38-
class Reader(object):
38+
class Reader:
3939
"""GeoIP2 database Reader object.
4040
4141
Instances of this class provide a reader for the GeoIP2 database format.

geoip2/webservice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
from geoip2.types import IPAddress
4848

4949

50-
class Client(object):
50+
class Client:
5151
"""Creates a new client object.
5252
5353
It accepts the following required arguments:

0 commit comments

Comments
 (0)