(bot, query)
| 109 | |
| 110 | @Client.on_callback_query(filters.regex(r'^about')) |
| 111 | async def about(bot, query): |
| 112 | buttons = [[ |
| 113 | InlineKeyboardButton('• back', callback_data='help'), |
| 114 | InlineKeyboardButton('Stats ✨️', callback_data='status') |
| 115 | ]] |
| 116 | reply_markup = InlineKeyboardMarkup(buttons) |
| 117 | await query.message.edit_text( |
| 118 | text=Script.ABOUT_TXT, |
| 119 | reply_markup=reply_markup, |
| 120 | disable_web_page_preview=True |
| 121 | ) |
| 122 | |
| 123 | # Don't Remove Credit Tg - @VJ_Botz |
| 124 | # Subscribe YouTube Channel For Amazing Bot https://youtube.com/@Tech_VJ |
nothing calls this directly
no outgoing calls
no test coverage detected