Displays info on how to trigger an error.
(update: Update, context: ContextTypes.DEFAULT_TYPE)
| 61 | |
| 62 | |
| 63 | async def start(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
| 64 | """Displays info on how to trigger an error.""" |
| 65 | await update.effective_message.reply_html( |
| 66 | "Use /bad_command to cause an error.\n" |
| 67 | f"Your chat id is <code>{update.effective_chat.id}</code>." |
| 68 | ) |
| 69 | |
| 70 | |
| 71 | def main() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…