Remove whitespace

This commit is contained in:
Ken Tsang
2017-08-04 19:19:43 +01:00
parent c9f871c0c9
commit 668811197c
2 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ from sqlalchemy.exc import IntegrityError
from freezegun import freeze_time
from app import db
from app.dao.inbound_numbers_dao import (
dao_set_inbound_number_to_service,
dao_set_inbound_number_to_service,
dao_get_available_inbound_numbers
)
from app.dao.services_dao import (

View File

@@ -281,10 +281,10 @@ def create_api_key(service, key_type=KEY_TYPE_NORMAL):
def create_inbound_number(number, provider='mmg', active=True, service_id=None):
inbound_number = InboundNumber(
id=uuid.uuid4(),
number=number,
provider=provider,
active=active,
id=uuid.uuid4(),
number=number,
provider=provider,
active=active,
service_id=service_id
)
db.session.add(inbound_number)