diff --git a/discordpolls/core.py b/discordpolls/core.py index 6cfe73b..30feaab 100644 --- a/discordpolls/core.py +++ b/discordpolls/core.py @@ -250,12 +250,10 @@ async def _poll_create( self, ctx: commands.GuildContext, question: commands.Range[str, 1, 300], - answers: Optional[ - Annotated[ - List[Dict[str, Union[str, discord.PartialEmoji, None]]], - commands.Greedy[PollAnswerConverter], - ] - ] = None, + answers: Annotated[ + List[Dict[str, Union[str, discord.PartialEmoji, None]]], + commands.Greedy[PollAnswerConverter], + ], duration: commands.Range[int, 1, 200] = 12, multiple: bool = False, ):