投票終了後の通知を受け取る
code:poll_end.py
from mipac.models import NotificationPollEnd
# ----- pollをimport -----
# on_poll_endをcogで受け取る用の記載(メソッド名とかちゃんとこれじゃないとだめだよ)
@commands.Cog.listener()
async def on_poll_end(self, notice: NotificationPollEnd):
test = notice.note.poll
for choice in test.choices:
print(choice.votes, choice.text)
2 投票A
0 投票B