aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
diff options
context:
space:
mode:
authorRapptz <[email protected]>2016-01-04 18:25:20 -0500
committerRapptz <[email protected]>2016-01-04 18:25:20 -0500
commit948f565b430d80f782d0b7c264cc0b27aa1ec0b2 (patch)
treecb5fc832e532435bbf2f450ef06550a785b0968c /discord/client.py
parentChange permissions to remove the can_ prefix. (diff)
downloaddiscord.py-948f565b430d80f782d0b7c264cc0b27aa1ec0b2.tar.xz
discord.py-948f565b430d80f782d0b7c264cc0b27aa1ec0b2.zip
Use super() in classes that could be subclassed.
Diffstat (limited to 'discord/client.py')
-rw-r--r--discord/client.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/client.py b/discord/client.py
index bbad5ee4..f43fe1c2 100644
--- a/discord/client.py
+++ b/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