From e62473a1b40177424221bbce02e56db37792c039 Mon Sep 17 00:00:00 2001 From: chawkk6404 <92063273+chawkk6404@users.noreply.github.com> Date: Sat, 27 Aug 2022 00:09:03 -0700 Subject: [PATCH] Fix incorrect docs in select menu min_values --- discord/components.py | 2 +- discord/ui/select.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/discord/components.py b/discord/components.py index 58314383c..3f7dd11db 100644 --- a/discord/components.py +++ b/discord/components.py @@ -240,7 +240,7 @@ class SelectMenu(Component): The placeholder text that is shown if nothing is selected, if any. 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. diff --git a/discord/ui/select.py b/discord/ui/select.py index 3417e97dc..3c154100b 100644 --- a/discord/ui/select.py +++ b/discord/ui/select.py @@ -75,7 +75,7 @@ class Select(Item[V]): The placeholder text that is shown if nothing is selected, if any. 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. @@ -335,7 +335,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.