def check2(msg):
return msg.author == ctx.author and msg.channel == ctx.channel
msg = await client.wait_for("message", check=check2, timeout=30)
member = ???
await member.send("test")
When it asks for a user input, I say, for example, @Bob. How do I make it DM @Bob given that I mentioned them?