mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 23:02:13 -05:00
Run auto-correct on app/ and tests/
This commit is contained in:
@@ -1,23 +1,21 @@
|
||||
from flask import (
|
||||
Blueprint,
|
||||
jsonify,
|
||||
request
|
||||
)
|
||||
|
||||
from flask import Blueprint, jsonify, request
|
||||
from notifications_utils.recipients import try_validate_and_format_phone_number
|
||||
|
||||
from app.dao.inbound_sms_dao import (
|
||||
dao_get_inbound_sms_for_service,
|
||||
dao_count_inbound_sms_for_service,
|
||||
dao_get_inbound_sms_by_id,
|
||||
dao_get_paginated_most_recent_inbound_sms_by_user_number_for_service
|
||||
dao_get_inbound_sms_for_service,
|
||||
dao_get_paginated_most_recent_inbound_sms_by_user_number_for_service,
|
||||
)
|
||||
from app.dao.service_data_retention_dao import (
|
||||
fetch_service_data_retention_by_notification_type,
|
||||
)
|
||||
from app.dao.service_data_retention_dao import fetch_service_data_retention_by_notification_type
|
||||
from app.errors import register_errors
|
||||
from app.inbound_sms.inbound_sms_schemas import (
|
||||
get_inbound_sms_for_service_schema,
|
||||
)
|
||||
from app.schema_validation import validate
|
||||
|
||||
from app.inbound_sms.inbound_sms_schemas import get_inbound_sms_for_service_schema
|
||||
|
||||
inbound_sms = Blueprint(
|
||||
'inbound_sms',
|
||||
__name__,
|
||||
|
||||
Reference in New Issue
Block a user