1
0
mirror of https://gitlab.com/simple-stock-bots/simple-stock-bot.git synced 2025-06-16 07:16:40 +00:00

moved files for telegram bot into thier own folder

This commit is contained in:
Anson 2019-02-05 17:02:43 -07:00
parent 3764f5f2a6
commit b3d83a72b4
5 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ def news(bot, update):
tickerData = tickerInfo.tickerQuote(tickers)
for ticker in tickers:
ticker = ticker.upper()
#Makes sure ticker exists
# Makes sure ticker exists
if tickerData[ticker] == 1:
name = tickerData[ticker + "Name"]
price = tickerData[ticker + "Price"]
@ -109,7 +109,7 @@ def stockInfo(bot, update):
tickerData = tickerInfo.tickerQuote(tickers)
for ticker in tickers:
ticker = ticker.upper()
#Makes sure ticker exists
# Makes sure ticker exists
if tickerData[ticker] == 1:
name = tickerData[ticker + "Name"]
price = tickerData[ticker + "Price"]