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

credentials.py isno longer necessary since only one token is used

This commit is contained in:
Anson 2019-01-23 16:24:45 -07:00
parent e14939c7c1
commit b7663ae097
2 changed files with 1 additions and 4 deletions

View File

@ -1,3 +0,0 @@
secrets = {
'TELEGRAM_TOKEN': "TELEGRAM BOT TOKEN HERE"
}

View File

@ -10,7 +10,7 @@ from telegram.ext import CommandHandler, Filters, MessageHandler, Updater
import credentials
import tickerInfo
TOKEN = credentials.secrets['TELEGRAM_TOKEN']
TOKEN = "TELEGRAM BOT TOKEN HERE"
# Enable logging
logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',