T
class form_data1(StatesGroup):
here_data1_text1 = State()
here_data1_text2 = State()
class form_data2(StatesGroup):
here_data2_text1 = State()
here_data2_text2 = State()
Как мне извлечь данные из этих двух классов в callback?
@dp.callback_query_handler()
async def process_callback(call: types.CallbackQuery):