How do I check if a bot reacted to a message with on_raw_reaction_add (discord.py)

I would use:

if payload.member.bot:
    return

Thanks!