diff options
Diffstat (limited to 'discord/channel.py')
| -rw-r--r-- | discord/channel.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/discord/channel.py b/discord/channel.py index a79b3424..adaefc06 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- + """ The MIT License (MIT) @@ -79,8 +80,8 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): top channel is position 0. """ - __slots__ = ( 'name', 'id', 'guild', 'topic', '_state', 'nsfw', - 'category_id', 'position', '_overwrites' ) + __slots__ = ('name', 'id', 'guild', 'topic', '_state', 'nsfw', + 'category_id', 'position', '_overwrites') def __init__(self, *, state, guild, data): self._state = state @@ -414,8 +415,8 @@ class VoiceChannel(discord.abc.Connectable, discord.abc.GuildChannel, Hashable): The channel's limit for number of members that can be in a voice channel. """ - __slots__ = ('name', 'id', 'guild', 'bitrate', 'user_limit', - '_state', 'position', '_overwrites', 'category_id' ) + __slots__ = ('name', 'id', 'guild', 'bitrate', 'user_limit', + '_state', 'position', '_overwrites', 'category_id') def __init__(self, *, state, guild, data): self._state = state |