Fix code style

This commit is contained in:
Rebecca Law
2016-01-18 11:03:38 +00:00
parent c4e5ab7c77
commit 8ace626320
2 changed files with 2 additions and 4 deletions

View File

@@ -1,12 +1,9 @@
#!/usr/bin/env python
from __future__ import print_function
import os
from flask.ext.script import Manager, Server
from flask.ext.migrate import Migrate, MigrateCommand
from app import create_app, db
application = create_app(os.getenv('NOTIFY_API_ENVIRONMENT') or 'development')
@@ -39,7 +36,7 @@ def create_admin_user_service():
users_dao.save_model_user(user)
service = Service(**{'name': 'Notify Service Admin',
'users':[user],
'users': [user],
'limit': 1000,
'active': True,
'restricted': True})