Код игнорит
if amount is None:
await ctx.send("Извените, но вы вели не правильное число.")
return
@Client.command(aliases=['clear', 'Clear', 'cLEAR', 'cls', 'Cls', 'cLS', 'сды', 'Сды', 'сДЫ', 'сдуфк', 'Сдуфк', 'сДУФК', 'СДУФК', 'CLEAR', 'CLS'])
@commands.has_any_role(1124320557052207256)
async def clearning(ctx, amount: int):
if amount is None:
await ctx.send("Извените, но вы вели не правильное число.")
return
await ctx.channel.purge(limit=int(amount))
embed = discord.Embed(colour=0x00b8f5,
timestamp=datetime.now())
embed.set_author(name="• Сообщении были удалены!")
embed.add_field(name="Кол-во:",
value=f'{amount}',
inline=True)
#============================
embed.add_field(name="Статус:",
value="Выполнено.",
inline=True)
embed.set_footer(text="NB • Liberator")
await ctx.send(embed=embed, delete_after=7.4)
Что делать?