У меня есть код:
@bot.command(aliases = ['магазин', 'SHOP', 'МАГАЗИН'])
async def shop(ctx):
await ctx.channel.purge(limit = 1)
with open('economy.json', 'r') as f:
money = json.load(f)
for role in money['shop']:
msg = await ctx.send(
embed=discord.Embed(title='Магазин',timestamp=ctx.message.created_at, description=f'**Роль:** <@&{role}> \n **Цена:** {money["shop"][role]["Cost"]}'),
components=[
Button(style=ButtonStyle.red, label='Удалить', emoji='⛔')
])
responce = await bot.wait_for('button_click', check=lambda message: message.author == ctx.author)
if responce.component.label == 'Удалить':
await msg.delete()
как мне в него поместить аргумент set_thumbnail или другой подобный?