Код запускается спокойно, но когда я ввожу команду, выдает ошибку в консоли:
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'int' object has no attribute 'set_image'
Код:
@client.command(aliases = ['fox'])
async def embed(ctx):
response = requests.get('https://some-random-api.ml/img/fox')
json_data = json.loads(response.text)
embed = discord.Embed(
title='тест', description='***???***', color=0xff9900, set_image(json_data['link'])
)
await ctx.send(embed=embed)