Cleaning up with black, isort, flake8.

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2024-01-16 07:37:21 -05:00
parent ab7387acd8
commit 9523cc1d97
28 changed files with 82 additions and 61 deletions

View File

@@ -1,4 +1,4 @@
from app.enums import TemplateType, NotificationStatus
from app.enums import NotificationStatus, TemplateType
from app.schema_validation.definitions import personalisation, uuid
template = {
@@ -80,7 +80,10 @@ get_notifications_request = {
"type": "object",
"properties": {
"reference": {"type": "string"},
"status": {"type": "array", "items": {"enum": [e.value for e in NotificationStatus]}},
"status": {
"type": "array",
"items": {"enum": [e.value for e in NotificationStatus]},
},
"template_type": {
"type": "array",
"items": {"enum": [e.value for e in TemplateType]},

View File

@@ -10,7 +10,7 @@ from app import api_user, authenticated_service, document_download_client, encry
from app.celery.tasks import save_api_email, save_api_sms
from app.clients.document_download import DocumentDownloadError
from app.config import QueueNames
from app.enums import NotificationType, NotificationStatus, KeyType, TemplateProcessType
from app.enums import KeyType, NotificationStatus, NotificationType, TemplateProcessType
from app.models import Notification
from app.notifications.process_notifications import (
persist_notification,
@@ -177,7 +177,11 @@ def process_sms_or_email_notification(
)
if not simulated:
queue_name = QueueNames.PRIORITY if template_process_type == TemplateProcessType.PRIORITY else None
queue_name = (
QueueNames.PRIORITY
if template_process_type == TemplateProcessType.PRIORITY
else None
)
send_notification_to_queue_detached(
key_type=api_user.key_type,
notification_type=notification_type,