Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
breakdowns authored Mar 23, 2021
1 parent a0a2e52 commit 8610fec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ def getConfig(name: str):
try:
HEROKU_API_KEY = getConfig('HEROKU_API_KEY')
except KeyError:
LOGGER.warning('HEROKU API KEY not provided!')
logging.warning('HEROKU API KEY not provided!')
HEROKU_API_KEY = None
try:
HEROKU_APP_NAME = getConfig('HEROKU_APP_NAME')
except KeyError:
LOGGER.warning('HEROKU APP NAME not provided!')
logging.warning('HEROKU APP NAME not provided!')
HEROKU_APP_NAME = None
try:
UPTOBOX_TOKEN = getConfig('UPTOBOX_TOKEN')
Expand Down

0 comments on commit 8610fec

Please sign in to comment.