Fix for review comments.

This commit is contained in:
Nicholas Staples
2016-02-03 15:53:16 +00:00
parent 8fd15b44eb
commit 6286646d7f
2 changed files with 0 additions and 4 deletions

View File

@@ -12,9 +12,6 @@ from app.aws_sqs import add_notification_to_queue
from app.dao import (templates_dao, services_dao)
from app.schemas import (
email_notification_schema, sms_admin_notification_schema, sms_template_notification_schema)
import re
mobile_regex = re.compile("^\\+44[\\d]{10}$")
notifications = Blueprint('notifications', __name__)

View File

@@ -2,7 +2,6 @@ import re
from flask_marshmallow.fields import fields
from . import ma
from . import models
from marshmallow_sqlalchemy.fields import Related
from marshmallow import (post_load, ValidationError, validates, validates_schema)
mobile_regex = re.compile("^\\+44[\\d]{10}$")