mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 01:41:05 -05:00
Reordered imports
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user