(bot, update)
| 27 | |
| 28 | @AutoCaptionBotV1.on_message(pyrogram.filters.private & pyrogram.filters.command(["start"])) |
| 29 | def start_command(bot, update): |
| 30 | update.reply(start_message.format(update.from_user.mention), reply_markup=start_buttons(bot, update), parse_mode=pyrogram.enums.ParseMode.HTML, disable_web_page_preview=True) |
| 31 | |
| 32 | @AutoCaptionBotV1.on_callback_query(pyrogram.filters.regex("start")) |
| 33 | def strat_callback(bot, update): |
nothing calls this directly
no test coverage detected