столкнулся с ошибкой при смене aiogram'a на новую версию
Ошибка
aiogram.exceptions.UnsupportedKeywordArgument: Passing any additional keyword arguments to the registrar method is not supported.
This error may be caused when you are trying to register filters like in 2.x version of this framework, if it's true just look at correspoding documentation pages.
Please remove the {'text'} arguments from this call.
А вот сам код
@dp.callback_query(text='first')
async def first(callback_query: types.CallbackQuery):
await callback_query.message.answer('Хорошо, приступим ко второму вопросу.')