class bronirovanie(disnake.ui.Modal):
def __init__(self):
bron = disnake.ui.TextInput(
label="Бронь",
placeholder="пиши",
custom_id="bron",
style=disnake.TextInputStyle.long
)
super().__init__(
title="Бронь",
custom_id="Bron4ik",
components=[bron],
)
async def callback(self, inter: disnake.ModalInteraction):
bron1 = inter.text_values["bron"]
description = (
"---------------------\n"
f"{bron1}\n"
"---------------------"
)
embed = disnake.Embed(
title="Бронирование",
description=description,
color=0xFFFFFF
)
channel = bot.get_channel()
await channel.send(embed=embed)
Как сделать так что бы можно было редактировать уже отправленный Embed