Код: Выделить всё
msg = discord.Embed(
title = country_name + ' Coronavirus cases',
colour = discord.Colour.blue(),
)
msg.set_thumbnail(url='https://www.worldometers.info/img/flags/'+ country_code +'-flag.gif')
msg.add_field(name='**Total Cases**', value = total_cases, inline = False)
msg.add_field(name='**Deaths**', value = total_deaths, inline = False)
msg.add_field(name='**Recovered**', value = total_recovered, inline = False)
await message.channel.send(embed=msg)
Код: Выделить всё
discord.errors.HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body
In embed.fields.1.value: This field is required
Подробнее здесь: https://stackoverflow.com/questions/609 ... code-50035