diff options
| author | Rapptz <[email protected]> | 2018-05-08 22:03:30 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-05-08 22:03:30 -0400 |
| commit | 07a535f514e146a9016c0b400727abea2f4feff6 (patch) | |
| tree | 8b0bd4e28552e221204ab0fdf695f7458614ad33 | |
| parent | Add support for getting individual ban entries (diff) | |
| download | discord.py-07a535f514e146a9016c0b400727abea2f4feff6.tar.xz discord.py-07a535f514e146a9016c0b400727abea2f4feff6.zip | |
Document user parameter in Guild.get_ban
| -rw-r--r-- | discord/guild.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/discord/guild.py b/discord/guild.py index 165ca446..93ef052a 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -810,6 +810,11 @@ class Guild(Hashable): You must have :attr:`~Permissions.ban_members` permission to get this information. + Parameters + ----------- + user: :class:`abc.Snowflake` + The user to get ban information from. + Raises ------ Forbidden |