From 9287eced495e9cd49dba9548277b31d8514629f7 Mon Sep 17 00:00:00 2001 From: _run Date: Sat, 25 Sep 2021 21:10:29 +0500 Subject: [PATCH] Update a typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 257b744..34d955b 100644 --- a/README.md +++ b/README.md @@ -242,7 +242,7 @@ Handle edited channel post messages Handle callback queries ```python @bot.callback_query_handler(func=lambda call: True) -def test_callback(call): # <- passes a CallbackQuery type object to your function +def test_callback(call): # <- passes a CallbackQuery type object to your function logger.info(call) ```