(message)
| 4 | |
| 5 | @bot.message_handler(commands=['start', 'help']) |
| 6 | def send_welcome(message): |
| 7 | bot.reply_to(message, "Howdy, how are you doing?") |
| 8 | |
| 9 | @bot.message_handler(func=lambda message: True) |
| 10 | def echo_all(message): |
nothing calls this directly
no test coverage detected
searching dependent graphs…