Я делаю дискорд-команду под названием «alert», которая заставит бота сказать указанное сообщение в указанном канале. Это мой код:
@bot.command()
@commands.has_permissions(view_audit_log=True)
async def alert(ctx, channel, message):
print(channel)
channel = ctx.guild.get_channel(channel)
await channel.send(message)
Ошибка здесь:
raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'NoneType' object has no attribute 'send'
Помощь?