import discord
from discord.ext import commands
from config import settings
bot = commands.Bot(command_prefix = settings['prefix'])
async def hello(ctx):
author = ctx.message.author
await ctx.send(f'{author.mention}')
bot.run(settings['token'])
, но он не работает, и пишет "ImportError: cannot import name 'handle_message_parameters' from 'discord.http' (/opt/ virtualenvs/python3/lib/python3.8/site-pack ages/discord/http.py)", что делать?