diff options
| author | Rapptz <[email protected]> | 2015-12-19 06:18:12 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2015-12-19 06:18:12 -0500 |
| commit | f1f0e169e425ac9c849561788281e27bd8bb0acd (patch) | |
| tree | 0a6d6717303c57e0902fd5dea043f2f83ff4a5e4 /discord/message.py | |
| parent | Add listener for on_ready event for easier background tasks. (diff) | |
| download | discord.py-f1f0e169e425ac9c849561788281e27bd8bb0acd.tar.xz discord.py-f1f0e169e425ac9c849561788281e27bd8bb0acd.zip | |
Add __slots__ where appropriate to data classes.
Diffstat (limited to 'discord/message.py')
| -rw-r--r-- | discord/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/message.py b/discord/message.py index b94d50c2..8981de2c 100644 --- a/discord/message.py +++ b/discord/message.py @@ -30,7 +30,7 @@ from .member import Member from .object import Object import re -class Message(object): +class Message: """Represents a message from Discord. There should be no need to create one of these manually. |