discord py clear channel code example
Example 1: discord.py clear command
@client.command()
async def clear(ctx, amount=5):
await ctx.channel.purge(limit=ammount)
Example 2: discord.py clear
@bot.command()
async def clear(ctx, amount=5):
await ctx.channel.purge(limit=amount)
or
@client.command()
async def clear(ctx, amount=5):
await ctx.channel.purge(limit=amount)