From d477b07286e1082fc21ebac51b40f6af531166e2 Mon Sep 17 00:00:00 2001 From: David <30721971+dvlwj@users.noreply.github.com> Date: Tue, 17 Jul 2018 10:35:52 +0700 Subject: [PATCH] Update utils.py fix utils bold parse markdown --- utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/utils.py b/utils.py index 5ee755c..d927e0f 100644 --- a/utils.py +++ b/utils.py @@ -88,8 +88,6 @@ def send_async(bot, *args, **kwargs): """Send a message asynchronously""" if 'timeout' not in kwargs: kwargs['timeout'] = TIMEOUT - if 'parse_mode' not in kwargs: - kwargs['parse_mode'] = telegram.ParseMode.MARKDOWN try: bot.sendMessage(*args, **kwargs)