Discord.py Vérifiez si le message a une certaine réaction

emoji = "" # some emoji as a string
if any(reaction.emoji == emoji for reaction in message.reactions):
	# there is at least one reaction of the specified emoji
DenverCoder1