Reached through the SO_COOL payload
(update: Update, context: ContextTypes.DEFAULT_TYPE)
| 72 | |
| 73 | |
| 74 | async def deep_linked_level_2(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
| 75 | """Reached through the SO_COOL payload""" |
| 76 | bot = context.bot |
| 77 | url = helpers.create_deep_linked_url(bot.username, USING_ENTITIES) |
| 78 | text = f'You can also mask the deep-linked URLs as links: <a href="{url}">▶️ CLICK HERE</a>.' |
| 79 | await update.message.reply_text( |
| 80 | text, parse_mode=ParseMode.HTML, link_preview_options=LinkPreviewOptions(is_disabled=True) |
| 81 | ) |
| 82 | |
| 83 | |
| 84 | async def deep_linked_level_3(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…