Run auto-correct on app/ and tests/

This commit is contained in:
Ben Thorner
2021-03-10 13:55:06 +00:00
parent 321b4913ed
commit a91fde2fda
248 changed files with 2026 additions and 1716 deletions

View File

@@ -3,26 +3,26 @@ from datetime import datetime
from freezegun import freeze_time
from app import statsd_client, encryption
from app import encryption, statsd_client
from app.celery.process_ses_receipts_tasks import process_ses_results
from app.celery.research_mode_tasks import (
ses_hard_bounce_callback,
ses_notification_callback,
ses_soft_bounce_callback,
ses_notification_callback
)
from app.celery.service_callback_tasks import create_delivery_status_callback_data
from app.celery.service_callback_tasks import (
create_delivery_status_callback_data,
)
from app.dao.notifications_dao import get_notification_by_id
from app.models import Complaint, Notification
from app.notifications.notifications_ses_callback import (
remove_emails_from_bounce,
remove_emails_from_complaint,
remove_emails_from_bounce
)
from tests.app.db import (
create_notification,
ses_complaint_callback,
create_service_callback_api,
ses_complaint_callback,
)