From 0e016be42ca4f34bb89761261a1c7c12f4cc8c48 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 15 Mar 2024 18:11:52 -0400 Subject: [PATCH] Clarify some docstrings around BulkBanResponse --- discord/guild.py | 2 +- docs/api.rst | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/discord/guild.py b/discord/guild.py index e65899a54..519eb1ce5 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -3814,7 +3814,7 @@ class Guild(Hashable): Parameters ----------- - users: :class:`abc.Snowflake` + users: Iterable[:class:`abc.Snowflake`] The user to ban from their guild. delete_message_seconds: :class:`int` The number of seconds worth of messages to delete from the user diff --git a/docs/api.rst b/docs/api.rst index f436b665b..9a9341d90 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -4499,14 +4499,14 @@ Guild .. attribute:: banned - The list of users that were banned. The type of the list is a :class:`Object` - representing the user. + The list of users that were banned. The inner :class:`Object` of the list + has the :attr:`Object.type` set to :class:`User`. :type: List[:class:`Object`] .. attribute:: failed - The list of users that could not be banned. The type of the list is a :class:`Object` - representing the user. + The list of users that could not be banned. The inner :class:`Object` of the list + has the :attr:`Object.type` set to :class:`User`. :type: List[:class:`Object`]