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,5 +1,4 @@
|
||||
from flask import Blueprint, jsonify
|
||||
from flask import request
|
||||
from flask import Blueprint, jsonify, request
|
||||
|
||||
from app.celery.tasks import process_returned_letters_list
|
||||
from app.config import QueueNames
|
||||
|
||||
@@ -1,20 +1,23 @@
|
||||
import boto3
|
||||
import io
|
||||
import json
|
||||
import math
|
||||
|
||||
from app.models import KEY_TYPE_TEST, SECOND_CLASS, RESOLVE_POSTAGE_FOR_FILE_NAME, NOTIFICATION_VALIDATION_FAILED
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
from enum import Enum
|
||||
|
||||
import boto3
|
||||
from flask import current_app
|
||||
|
||||
from notifications_utils.letter_timings import LETTER_PROCESSING_DEADLINE
|
||||
from notifications_utils.pdf import pdf_page_count
|
||||
from notifications_utils.s3 import s3upload
|
||||
from notifications_utils.timezones import convert_utc_to_bst
|
||||
|
||||
from app.models import (
|
||||
KEY_TYPE_TEST,
|
||||
NOTIFICATION_VALIDATION_FAILED,
|
||||
RESOLVE_POSTAGE_FOR_FILE_NAME,
|
||||
SECOND_CLASS,
|
||||
)
|
||||
|
||||
|
||||
class ScanErrorType(Enum):
|
||||
ERROR = 1
|
||||
|
||||
Reference in New Issue
Block a user