Browse Source

Clarify some docstrings around BulkBanResponse

pull/9758/head
Rapptz 1 year ago
parent
commit
0e016be42c
  1. 2
      discord/guild.py
  2. 8
      docs/api.rst

2
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

8
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`]

Loading…
Cancel
Save