Делаю бота на питоне, решил воспользоваться новой фичей с кнопкой, сделал вроде все правильно, но вылезла ошибка "object of type Button is not json serializable" Помогите решить.
@Bot.event
async def on_message(m):
if m.channel.id == 930870896107860031:
await m.edit(content=m.content,
components=[
Button(style=ButtonStyle.green, label="f")
]
)
response = await bot.wait_for("button_click")
if response.channel:
my_channel = bot.get_channel(931423249210966056)
user = response.author
await my_channel.send("f")