Reached through the USING_KEYBOARD payload
(update: Update, context: ContextTypes.DEFAULT_TYPE)
| 99 | |
| 100 | |
| 101 | async def deep_linked_level_4(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
| 102 | """Reached through the USING_KEYBOARD payload""" |
| 103 | payload = context.args |
| 104 | await update.message.reply_text( |
| 105 | f"Congratulations! This is as deep as it gets 👏🏻\n\nThe payload was: {payload}" |
| 106 | ) |
| 107 | |
| 108 | |
| 109 | def main() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…