kick feature on discord bot py code example
Example: kick member discord py
# Might Work...
@bot.command(pass_context = True)
async def kick(ctx, userName: discord.User):
await bot.kick(userName)
# Might Work...
@bot.command(pass_context = True)
async def kick(ctx, userName: discord.User):
await bot.kick(userName)