From 40227f75defdb352a531ef5d7c6cfe9f596fa379 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 13 Feb 2023 23:47:54 -0500 Subject: [PATCH] Fix select decorator type checking error --- 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 859a3f5a3..11555c7f7 100644 --- a/discord/ui/select.py +++ b/discord/ui/select.py @@ -752,7 +752,7 @@ def select( def select( *, - cls: Type[BaseSelectT] = Select, + cls: Type[BaseSelectT] = Select[V], options: List[SelectOption] = MISSING, channel_types: List[ChannelType] = MISSING, placeholder: Optional[str] = None,