Send a message when the command /help is issued.
(update: Update, context: ContextTypes.DEFAULT_TYPE)
| 41 | |
| 42 | |
| 43 | async def help_command(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
| 44 | """Send a message when the command /help is issued.""" |
| 45 | await update.message.reply_text("Help!") |
| 46 | |
| 47 | |
| 48 | async def inline_query(update: Update, context: ContextTypes.DEFAULT_TYPE) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…