Browse Source

Document Guild.bans breaking change in the migrating guide

pull/7824/head
Rapptz 3 years ago
parent
commit
f47568ee71
  1. 16
      docs/migrating.rst

16
docs/migrating.rst

@ -921,6 +921,22 @@ This removes the following:
- ``commands.StoreChannelConverter``
- ``ChannelType.store``
Change in ``Guild.bans`` endpoint
-----------------------------------
Due to a breaking API change by Discord, :meth:`Guild.bans` no longer returns a list of every ban in the guild but instead is paginated using an asynchronous iterator.
.. code-block:: python3
# before
bans = await guild.bans()
# after
async for ban in guild.bans(limit=1000):
...
Function Signature Changes
----------------------------

Loading…
Cancel
Save