mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-01 07:35:34 -05:00
Run auto-correct on app/ and tests/
This commit is contained in:
@@ -1,19 +1,22 @@
|
||||
from io import BytesIO
|
||||
|
||||
from flask import jsonify, request, url_for, current_app, send_file
|
||||
from flask import current_app, jsonify, request, send_file, url_for
|
||||
|
||||
from app import api_user, authenticated_service
|
||||
from app.dao import notifications_dao
|
||||
from app.letters.utils import get_letter_pdf_and_metadata
|
||||
from app.models import (
|
||||
LETTER_TYPE,
|
||||
NOTIFICATION_PENDING_VIRUS_CHECK,
|
||||
NOTIFICATION_TECHNICAL_FAILURE,
|
||||
NOTIFICATION_VIRUS_SCAN_FAILED,
|
||||
)
|
||||
from app.schema_validation import validate
|
||||
from app.v2.errors import BadRequestError, PDFNotReadyError
|
||||
from app.v2.notifications import v2_notification_blueprint
|
||||
from app.v2.notifications.notification_schemas import get_notifications_request, notification_by_id
|
||||
from app.models import (
|
||||
NOTIFICATION_PENDING_VIRUS_CHECK,
|
||||
NOTIFICATION_VIRUS_SCAN_FAILED,
|
||||
NOTIFICATION_TECHNICAL_FAILURE,
|
||||
LETTER_TYPE,
|
||||
from app.v2.notifications.notification_schemas import (
|
||||
get_notifications_request,
|
||||
notification_by_id,
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user