I am trying to make a discord bot for my server using python but I have run into a Traceback error and I am unsure of how to fix it.
import discord
from discord.ext import commands
TOKEN = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
client = commands.Bot(command_prefix="minted ")
@client.event
async def on_ready():
print("we ready boiis")
client.run(TOKEN)