From 103d75540ca930152b6d39a6c6a503f67c2f2b06 Mon Sep 17 00:00:00 2001
From: Puncher <65789180+Puncher1@users.noreply.github.com>
Date: Sun, 5 Mar 2023 23:32:20 +0100
Subject: [PATCH] Fix MISSING error for enabled param in create_automod_rule

---
 discord/guild.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/discord/guild.py b/discord/guild.py
index 0a901fbe3..f80429173 100644
--- a/discord/guild.py
+++ b/discord/guild.py
@@ -4064,7 +4064,7 @@ class Guild(Hashable):
         event_type: AutoModRuleEventType,
         trigger: AutoModTrigger,
         actions: List[AutoModRuleAction],
-        enabled: bool = MISSING,
+        enabled: bool = False,
         exempt_roles: Sequence[Snowflake] = MISSING,
         exempt_channels: Sequence[Snowflake] = MISSING,
         reason: str = MISSING,
@@ -4089,7 +4089,7 @@ class Guild(Hashable):
             The actions that will be taken when the automod rule is triggered.
         enabled: :class:`bool`
             Whether the automod rule is enabled.
-            Discord will default to ``False``.
+            Defaults to ``False``.
         exempt_roles: Sequence[:class:`abc.Snowflake`]
             A list of roles that will be exempt from the automod rule.
         exempt_channels: Sequence[:class:`abc.Snowflake`]