diff options
| author | Rapptz <[email protected]> | 2018-10-11 03:42:01 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-10-11 03:42:01 -0400 |
| commit | 860d6a9ace8248dfeec18b8b159e7b757d9f56bb (patch) | |
| tree | c78d40d0960531c2e0ddb5957b6a86072d08491a /discord/channel.py | |
| parent | [commands] Add call_once keyword-only parameter for Bot.remove_check (diff) | |
| download | discord.py-860d6a9ace8248dfeec18b8b159e7b757d9f56bb.tar.xz discord.py-860d6a9ace8248dfeec18b8b159e7b757d9f56bb.zip | |
Revert "Rework documentation to not duplicate inherited members."
This reverts commit 96981210b3415e15446db0b702b07fef25c8b680.
Diffstat (limited to 'discord/channel.py')
| -rw-r--r-- | discord/channel.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/discord/channel.py b/discord/channel.py index 3d330a43..30e2369c 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -45,11 +45,6 @@ async def _single_delete_strategy(messages): class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): """Represents a Discord guild text channel. - **Inherited Classes** - - - :class:`discord.abc.Messageable` - - :class:`discord.abc.GuildChannel` - .. container:: operations .. describe:: x == y @@ -393,11 +388,6 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): class VoiceChannel(discord.abc.Connectable, discord.abc.GuildChannel, Hashable): """Represents a Discord guild voice channel. - **Inherited Classes** - - - :class:`discord.abc.Connectable` - - :class:`discord.abc.GuildChannel` - .. container:: operations .. describe:: x == y @@ -625,10 +615,6 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): class DMChannel(discord.abc.Messageable, Hashable): """Represents a Discord direct message channel. - **Inherited Classes** - - - :class:`discord.abc.Messageable` - .. container:: operations .. describe:: x == y @@ -711,10 +697,6 @@ class DMChannel(discord.abc.Messageable, Hashable): class GroupChannel(discord.abc.Messageable, Hashable): """Represents a Discord group channel. - **Inherited Classes** - - - :class:`discord.abc.Messageable` - .. container:: operations .. describe:: x == y |