Polls need to be passed using poll keyword argument:
poll
p = discord.Poll(question="idk", duration=timedelta(hours=1.0)) p.add_answer(text="1") p.add_answer(text="2") await ctx.send(poll=p)
Reference