From 63dbecf65dbd197ba7f68a8ea98c9dde558de6a4 Mon Sep 17 00:00:00 2001 From: iDutchy <42503862+iDutchy@users.noreply.github.com> Date: Wed, 20 Oct 2021 02:04:28 +0200 Subject: [PATCH] Fix incorrect doc I forgot about the decorator... min_values can also be 0, so this should prevent confusion --- discord/ui/select.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ui/select.py b/discord/ui/select.py index 704a4d00..cc7905ee 100644 --- a/discord/ui/select.py +++ b/discord/ui/select.py @@ -327,7 +327,7 @@ def select( ordering. The row number must be between 0 and 4 (i.e. zero indexed). min_values: :class:`int` The minimum number of items that must be chosen for this select menu. - Defaults to 1 and must be between 1 and 25. + Defaults to 1 and must be between 0 and 25. max_values: :class:`int` The maximum number of items that must be chosen for this select menu. Defaults to 1 and must be between 1 and 25.