diff options
| author | Rapptz <[email protected]> | 2016-01-04 18:25:20 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-01-04 18:25:20 -0500 |
| commit | 948f565b430d80f782d0b7c264cc0b27aa1ec0b2 (patch) | |
| tree | cb5fc832e532435bbf2f450ef06550a785b0968c /discord/object.py | |
| parent | Change permissions to remove the can_ prefix. (diff) | |
| download | discord.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.py | 1 |
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 |