Reached through the USING_ENTITIES payload
(update: Update, context: ContextTypes.DEFAULT_TYPE)
| 82 | |
| 83 | |
| 84 | async def deep_linked_level_3(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
| 85 | """Reached through the USING_ENTITIES payload""" |
| 86 | await update.message.reply_text( |
| 87 | "It is also possible to make deep-linking using InlineKeyboardButtons.", |
| 88 | reply_markup=InlineKeyboardMarkup( |
| 89 | [[InlineKeyboardButton(text="Like this!", callback_data=KEYBOARD_CALLBACKDATA)]] |
| 90 | ), |
| 91 | ) |
| 92 | |
| 93 | |
| 94 | async def deep_link_level_3_callback(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…