(message)
| 42 | |
| 43 | @bot.message_handler(commands=["start"]) |
| 44 | def start_message(message): |
| 45 | bot.send_message(message.chat.id,"You can use the keyboard",reply_markup=keyboard()) |
| 46 | |
| 47 | @bot.message_handler(func=lambda message:True) |
| 48 | def all_messages(message): |
nothing calls this directly
no test coverage detected
searching dependent graphs…