__all__ = ("get",) from aiogram import types from aiogram.utils.keyboard import InlineKeyboardBuilder def get(): builder = InlineKeyboardBuilder() builder.row( types.InlineKeyboardButton( text="πŸ‘€ Change username", callback_data="profile_change_username", ), types.InlineKeyboardButton( text="πŸ”’ Change age", callback_data="profile_change_age", ), ) builder.row( types.InlineKeyboardButton( text="ℹ️ Change bio", callback_data="profile_change_bio", ), types.InlineKeyboardButton( text="πŸ“ Change sex", callback_data="profile_change_sex", ), ) builder.row( types.InlineKeyboardButton( text="πŸ—ΊοΈ Change location", callback_data="profile_change_location", ), ) return builder.as_markup()