whats wrong with my code?
import discord
from discord.ext import commands
import os
from dotenv import load_dotenv
load_dotenv()
token_bot = os.getenv('x')
id_do_servidor = x
id_cargo_atendente = x
id_cargo_suporte = x
client = commands.Bot(command_prefix=".", case_insensitive=True, intents=discord.Intents.default())
@client.event
async def on_ready():
print(f"Entramos como {client.user}")
@client.command()
async def enviarembed(ctx):
embed = discord.Embed(
title="TÃtulo",
description="Descrição",
color=discord.Color.red()
)
embed.set_footer(text="Rodapé do embed")
embed.set_author(name=ctx.author.display_name, icon_url=ctx.author.avatar.url)
await ctx.send(embed=embed)
client.run('x')