Skip to content
This repository was archived by the owner on Aug 26, 2021. It is now read-only.

Commit 9ea8d13

Browse files
committed
Removes superfluous spaces
1 parent 5e7b8a6 commit 9ea8d13

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flask_heroku.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ def init_app(self, app):
4545
app.config.setdefault('MAIL_USERNAME', environ.get('SENDGRID_USERNAME'))
4646
app.config.setdefault('MAIL_PASSWORD', environ.get('SENDGRID_PASSWORD'))
4747
app.config.setdefault('MAIL_USE_TLS', True)
48-
48+
4949
# Redis To Go
5050
redis_url = environ.get('REDISTOGO_URL')
5151
if redis_url:
5252
url = urlparse.urlparse(redis_url)
5353
app.config.setdefault('REDIS_HOST', url.hostname)
5454
app.config.setdefault('REDIS_PORT', url.port)
5555
app.config.setdefault('REDIS_PASSWORD', url.password)
56-
56+
5757
# Mongolab
5858
mongolab_uri = environ.get('MONGOLAB_URI')
5959
if mongolab_uri:
@@ -63,7 +63,7 @@ def init_app(self, app):
6363
app.config.setdefault('MONGODB_HOST', url.hostname)
6464
app.config.setdefault('MONGODB_PORT', url.port)
6565
app.config.setdefault('MONGODB_DB', url.path[1:])
66-
66+
6767
# MongoHQ
6868
mongohq_uri = environ.get('MONGOHQ_URL')
6969
if mongohq_uri:

0 commit comments

Comments
 (0)