from aiogram.types import ( InlineKeyboardMarkup, InlineKeyboardButton ) def get_booking_actions( booking_id: int ): return InlineKeyboardMarkup( inline_keyboard=[ [ InlineKeyboardButton( text="✏️ Изменить", callback_data=f"edit_booking_{booking_id}" ) ], [ InlineKeyboardButton( text="❌ Отменить", callback_data=f"cancel_booking_{booking_id}" ) ] ] )