From ba2ad58017a123286ff99793266fe240f38b3f2f Mon Sep 17 00:00:00 2001 From: Willy <19799671+Willy-C@users.noreply.github.com> Date: Sat, 8 Oct 2022 02:11:01 -0400 Subject: [PATCH] Add default value to Guild.ban docs --- discord/guild.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/discord/guild.py b/discord/guild.py index 510643fd7..77150d310 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -3415,11 +3415,15 @@ class Guild(Hashable): delete_message_days: :class:`int` The number of days worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 7. + Defaults to 1 day if neither ``delete_message_days`` nor + ``delete_message_seconds`` are passed. .. deprecated:: 2.1 - delete_message_seconds: :class:`int`: + delete_message_seconds: :class:`int` The number of seconds worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 604800 (7 days). + Defaults to 1 day if neither ``delete_message_days`` nor + ``delete_message_seconds`` are passed. .. versionadded:: 2.1 reason: Optional[:class:`str`]