diff options
| author | Hornwitser <[email protected]> | 2018-06-22 16:08:27 +0200 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-08-22 21:43:53 -0400 |
| commit | c8b49d37be8c4aabb2d5896708f9dff91ffae368 (patch) | |
| tree | d0b49a0532a69f7c34b330d54cc57b65719ad1ea /discord/message.py | |
| parent | [lint] Remove unnecessary lambdas (diff) | |
| download | discord.py-c8b49d37be8c4aabb2d5896708f9dff91ffae368.tar.xz discord.py-c8b49d37be8c4aabb2d5896708f9dff91ffae368.zip | |
[lint] Fix incorrect and inconsistent whitespace
Adjust whitespace to be consistent with the rest of the library.
Diffstat (limited to 'discord/message.py')
| -rw-r--r-- | discord/message.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/discord/message.py b/discord/message.py index c6559616..f8af8e2f 100644 --- a/discord/message.py +++ b/discord/message.py @@ -194,13 +194,13 @@ class Message: - ``cover_image``: A string representing the embed's image asset ID. """ - __slots__ = ( '_edited_timestamp', 'tts', 'content', 'channel', 'webhook_id', - 'mention_everyone', 'embeds', 'id', 'mentions', 'author', - '_cs_channel_mentions', '_cs_raw_mentions', 'attachments', - '_cs_clean_content', '_cs_raw_channel_mentions', 'nonce', 'pinned', - 'role_mentions', '_cs_raw_role_mentions', 'type', 'call', - '_cs_system_content', '_cs_guild', '_state', 'reactions', - 'application', 'activity' ) + __slots__ = ('_edited_timestamp', 'tts', 'content', 'channel', 'webhook_id', + 'mention_everyone', 'embeds', 'id', 'mentions', 'author', + '_cs_channel_mentions', '_cs_raw_mentions', 'attachments', + '_cs_clean_content', '_cs_raw_channel_mentions', 'nonce', 'pinned', + 'role_mentions', '_cs_raw_role_mentions', 'type', 'call', + '_cs_system_content', '_cs_guild', '_state', 'reactions', + 'application', 'activity') def __init__(self, *, state, channel, data): self._state = state |