mirror of
https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git
synced 2025-06-16 15:06:53 +00:00
left print statements in code
This commit is contained in:
parent
4f7aff9db2
commit
465e60e016
4
bot.py
4
bot.py
@ -281,7 +281,7 @@ def search(update: Update, context: CallbackContext):
|
|||||||
for _, query in queries.iterrows():
|
for _, query in queries.iterrows():
|
||||||
desc = query["description"]
|
desc = query["description"]
|
||||||
reply += "`" + desc.replace(": ", "` : ") + "\n"
|
reply += "`" + desc.replace(": ", "` : ") + "\n"
|
||||||
print(reply)
|
|
||||||
update.message.reply_text(
|
update.message.reply_text(
|
||||||
text=reply,
|
text=reply,
|
||||||
parse_mode=telegram.ParseMode.MARKDOWN,
|
parse_mode=telegram.ParseMode.MARKDOWN,
|
||||||
@ -475,7 +475,7 @@ def inline_query(update: Update, context: CallbackContext):
|
|||||||
|
|
||||||
results = []
|
results = []
|
||||||
for _, row in matches.iterrows():
|
for _, row in matches.iterrows():
|
||||||
print(row)
|
|
||||||
results.append(
|
results.append(
|
||||||
InlineQueryResultArticle(
|
InlineQueryResultArticle(
|
||||||
str(uuid4()),
|
str(uuid4()),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user