diff options
| author | jack1142 <[email protected]> | 2019-10-13 14:29:37 +0200 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-10-17 20:10:34 -0400 |
| commit | f831767585b6cbb5c1971e461cd3b3900c4b1879 (patch) | |
| tree | 23dc9a92fdfb6082c4aca22a304563a7afb9e678 /docs | |
| parent | Prevent premium_subscription_count being None (diff) | |
| download | discord.py-f831767585b6cbb5c1971e461cd3b3900c4b1879.tar.xz discord.py-f831767585b6cbb5c1971e461cd3b3900c4b1879.zip | |
docs: `on_guild_emojis_update` is a `Sequence`
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/api.rst b/docs/api.rst index ca27a6d3..88b3c62a 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -572,9 +572,9 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param guild: The guild who got their emojis updated. :type guild: :class:`Guild` :param before: A list of emojis before the update. - :type before: List[:class:`Emoji`] + :type before: Sequence[:class:`Emoji`] :param after: A list of emojis after the update. - :type after: List[:class:`Emoji`] + :type after: Sequence[:class:`Emoji`] .. function:: on_guild_available(guild) on_guild_unavailable(guild) |