no removeprefix method

This commit is contained in:
mihalin 2022-06-30 01:10:18 +03:00
parent 55e99becd0
commit b0d4bc6f27

View File

@ -27,7 +27,7 @@ async def notify(message: types.Message, state: FSMContext):
await message.answer(_("Нужно указать имя бота")) await message.answer(_("Нужно указать имя бота"))
return return
bot = await models.Bot.filter(name=bot_name.removeprefix("@")).first() bot = await models.Bot.filter(name=bot_name.replace("@", "")).first()
if not bot: if not bot:
await message.answer(_("Такого бота нет в системе")) await message.answer(_("Такого бота нет в системе"))