aboutsummaryrefslogtreecommitdiff
path: root/discord/object.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/object.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/object.py')
-rw-r--r--discord/object.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/discord/object.py b/discord/object.py
index ebf28f0f..e96cdbf8 100644
--- a/discord/object.py
+++ b/discord/object.py
@@ -44,4 +44,5 @@ class Object:
"""
def __init__(self, id):
+ super().__init__(id)
self.id = id