Browse Source

Use super() in classes that could be subclassed.

pull/74/head
Rapptz 9 years ago
parent
commit
948f565b43
  1. 1
      discord/client.py
  2. 1
      discord/object.py
  3. 1
      discord/user.py

1
discord/client.py

@ -105,6 +105,7 @@ class Client:
"""
def __init__(self, *, loop=None, **options):
super().__init__(loop, **options)
self.ws = None
self.token = None
self.gateway = None

1
discord/object.py

@ -44,4 +44,5 @@ class Object:
"""
def __init__(self, id):
super().__init__(id)
self.id = id

1
discord/user.py

@ -56,6 +56,7 @@ class User:
__slots__ = ['name', 'id', 'discriminator', 'avatar']
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.name = kwargs.get('username')
self.id = kwargs.get('id')
self.discriminator = kwargs.get('discriminator')

Loading…
Cancel
Save