From 5538cd501c4055c12c8d78534a8d8c648fef125c Mon Sep 17 00:00:00 2001 From: Mikey <8661717+sgtlaggy@users.noreply.github.com> Date: Wed, 3 Aug 2022 00:13:00 -0700 Subject: [PATCH] Document relationship between AutoModRuleAction and its type --- discord/automod.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discord/automod.py b/discord/automod.py index 48a39586e..d39288e35 100644 --- a/discord/automod.py +++ b/discord/automod.py @@ -65,11 +65,14 @@ class AutoModRuleAction: ----------- type: :class:`AutoModRuleActionType` The type of action to take. + Defaults to :attr:`~AutoModRuleActionType.block_message`. channel_id: Optional[:class:`int`] The ID of the channel or thread to send the alert message to, if any. + Passing this sets :attr:`type` to :attr:`~AutoModRuleActionType.send_alert_message`. duration: Optional[:class:`datetime.timedelta`] The duration of the timeout to apply, if any. Has a maximum of 28 days. + Passing this sets :attr:`type` to :attr:`~AutoModRuleActionType.timeout`. """ __slots__ = ('type', 'channel_id', 'duration')