@commands.command(name= 'start')
async def start_pc(self, ctx):
msg = await ctx.send("**React to this message to join!**")
await msg.add_reaction('\U00002705')
await asyncio.sleep(15)
print(1)
users = set()
for reaction in msg.reactions:
async for user in reaction.users():
users.add(user)
print(users)
here is the code, I'm only getting set() in my terminal