from telegram import InlineKeyboardButton, InlineKeyboardMarkup MENU_TEXT = "Que voulez-vous signaler ?" def get_menu_keyboard() -> InlineKeyboardMarkup: return InlineKeyboardMarkup([ [InlineKeyboardButton("📸 Fin de Chantier", callback_data="fin")], [InlineKeyboardButton("⚠️ Alerte SAV", callback_data="sav")], [InlineKeyboardButton("📦 Matériel Manquant", callback_data="materiel")], [InlineKeyboardButton("📚 FAQ / Diagnostic", callback_data="faq")], ])