Reordered imports

This commit is contained in:
Ken Tsang
2017-10-24 14:32:07 +01:00
parent 5da119f824
commit ab55650871

View File

@@ -7,21 +7,21 @@ from flask import current_app
from app.models import ( from app.models import (
Job, Job,
Notification, Notification,
NOTIFICATION_CREATED,
NOTIFICATION_DELIVERED, NOTIFICATION_DELIVERED,
NOTIFICATION_FAILED, NOTIFICATION_FAILED,
NOTIFICATION_SENDING, NOTIFICATION_SENDING,
NOTIFICATION_CREATED, NOTIFICATION_STATUS_LETTER_RECEIVED,
NOTIFICATION_TECHNICAL_FAILURE, NOTIFICATION_TECHNICAL_FAILURE
NOTIFICATION_STATUS_LETTER_RECEIVED
) )
from app.dao.notifications_dao import dao_update_notifications_by_reference from app.dao.notifications_dao import dao_update_notifications_by_reference
from app.celery.tasks import ( from app.celery.tasks import (
update_job_to_sent_to_dvla, process_updates_from_file,
update_dvla_job_to_error, update_dvla_job_to_error,
update_job_to_sent_to_dvla,
update_letter_notifications_statuses, update_letter_notifications_statuses,
update_letter_notifications_to_sent_to_dvla,
update_letter_notifications_to_error, update_letter_notifications_to_error,
process_updates_from_file update_letter_notifications_to_sent_to_dvla
) )
from tests.app.db import create_notification from tests.app.db import create_notification