(message)
| 23 | # Handle '/start' and '/help' |
| 24 | @bot.message_handler(commands=['help', 'start']) |
| 25 | def send_welcome(message): |
| 26 | msg = bot.reply_to(message, """\ |
| 27 | Hi there, I am Example bot. |
| 28 | What's your name? |
| 29 | """) |
| 30 | bot.register_next_step_handler(msg, process_name_step) |
| 31 | |
| 32 | |
| 33 | def process_name_step(message): |
nothing calls this directly
no test coverage detected
searching dependent graphs…