diff --git a/examples/python/whatsapp_echo_bot.py b/examples/python/whatsapp_echo_bot.py index dbdaed96..da04514a 100644 --- a/examples/python/whatsapp_echo_bot.py +++ b/examples/python/whatsapp_echo_bot.py @@ -82,7 +82,7 @@ def whatsapp_webhook(): # Send a text back via WhatsApp HTTP API send_message(chat_id=chat_id, text=text) # OR reply on the message - # reply(chat_id=chat_id, message_id=message_id, text=text) + reply(chat_id=chat_id, message_id=message_id, text=text) # Send OK back return "OK"