import discord
from discord.ext import commands
config = {
'token': 'your-token',
'prefix': 'prefix',
}
bot = commands.Bot(command_prefix=config['prefix'])
@bot.event
async def on_message(ctx):
if ctx.author != bot.user:
await ctx.reply(ctx.content)
Я в первый раз делаю бот для дс. Настрочил что-то такого и оно выдает ошибку
Traceback (most recent call last):
File "E:\project\Toster\main.py", line 9, in
bot = commands.Bot(command_prefix=config['prefix'])
TypeError: BotBase.__init__() missing 1 required keyword-only argument: 'intents'
и пайчарм выделяет последнюю скобку, на строке где присваиваю префикс