1
0
mirror of https://gitlab.com/simple-stock-bots/simple-telegram-stock-bot.git synced 2025-07-23 14:41:26 +00:00
This commit is contained in:
2021-06-22 00:08:04 -07:00
parent 55bf78a57b
commit 6baf893823
3 changed files with 28 additions and 11 deletions

View File

@@ -326,7 +326,7 @@ class Router:
stocks = self.stock.trending()
coins = self.crypto.trending()
reply = "`Trending Stocks:\n"
reply = "Trending Stocks:\n"
reply += "-" * len("Trending Stocks:") + "\n"
for stock in stocks:
reply += stock + "\n"
@@ -336,7 +336,7 @@ class Router:
for coin in coins:
reply += coin + "\n"
return reply + "`"
return reply
def random_pick(self) -> str: