mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-24 16:23:44 -04:00
Run auto-correct on app/ and tests/
This commit is contained in:
@@ -1,32 +1,30 @@
|
||||
import uuid
|
||||
from unittest.mock import ANY
|
||||
|
||||
from flask import json
|
||||
from flask import url_for
|
||||
import pytest
|
||||
from flask import json, url_for
|
||||
|
||||
from app.config import QueueNames
|
||||
from app.models import (
|
||||
Job,
|
||||
Notification,
|
||||
EMAIL_TYPE,
|
||||
INTERNATIONAL_LETTERS,
|
||||
KEY_TYPE_NORMAL,
|
||||
KEY_TYPE_TEAM,
|
||||
KEY_TYPE_TEST,
|
||||
LETTER_TYPE,
|
||||
NOTIFICATION_CREATED,
|
||||
NOTIFICATION_SENDING,
|
||||
NOTIFICATION_DELIVERED,
|
||||
NOTIFICATION_PENDING_VIRUS_CHECK,
|
||||
NOTIFICATION_SENDING,
|
||||
SMS_TYPE,
|
||||
INTERNATIONAL_LETTERS,
|
||||
Job,
|
||||
Notification,
|
||||
)
|
||||
from app.schema_validation import validate
|
||||
from app.v2.errors import RateLimitError
|
||||
from app.v2.notifications.notification_schemas import post_letter_response
|
||||
|
||||
from tests import create_authorization_header
|
||||
from tests.app.db import create_service, create_template, create_letter_contact
|
||||
from tests.app.db import create_letter_contact, create_service, create_template
|
||||
from tests.conftest import set_config_values
|
||||
|
||||
test_address = {
|
||||
|
||||
Reference in New Issue
Block a user