1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-25 07:31:48 +00:00

left print statements in code

This commit is contained in:
2021-11-06 11:57:35 -07:00
parent 4f7aff9db2
commit 465e60e016

4
bot.py
View File

@@ -281,7 +281,7 @@ def search(update: Update, context: CallbackContext):
for _, query in queries.iterrows():
desc = query["description"]
reply += "`" + desc.replace(": ", "` : ") + "\n"
print(reply)
update.message.reply_text(
text=reply,
parse_mode=telegram.ParseMode.MARKDOWN,
@@ -475,7 +475,7 @@ def inline_query(update: Update, context: CallbackContext):
results = []
for _, row in matches.iterrows():
print(row)
results.append(
InlineQueryResultArticle(
str(uuid4()),