From 544bb1e237ae29febb487ffeda1e7309be1b198c Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 16 May 2022 17:05:21 -0400 Subject: [PATCH] Fix typo in FlagConverter example --- docs/ext/commands/commands.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ext/commands/commands.rst b/docs/ext/commands/commands.rst index b636b554f..016168da6 100644 --- a/docs/ext/commands/commands.rst +++ b/docs/ext/commands/commands.rst @@ -931,7 +931,7 @@ For ease of use, the :func:`~ext.commands.flag` function accepts a ``description class BanFlags(commands.FlagConverter): member: discord.Member = commands.flag(description='The member to ban') reason: str = commands.flag(description='The reason for the ban') - days: int = 1 = commands.flag(description='The number of days worth of messages to delete') + days: int = commands.flag(default=1, description='The number of days worth of messages to delete') @commands.hybrid_command()