I am making a kick command for my discord.py bot. Here is some code that the kick command might be:
async kick_command(self, ctx, userName: discord.User):
prefix_used = ctx.prefix
alias_used = ctx.invoked_with
text = msg[len(prefix_used) + len(alias_used):]
if discord.User permissions = "admin":
try:
kick(User)
except Exception as e:
ee = "Error: " + e
await ctx.send_message(content=ee)
I am pretty sure the if statement and kick(User)
are invalid syntax. Can you help me?
My code: click here