From 08fe1a04db7626ffcf114eb27f52e232ee64ba0f Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 19 Aug 2024 13:12:31 -0700 Subject: [PATCH] fix imports --- app/clients/sms/aws_sns.py | 2 +- app/user/rest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/clients/sms/aws_sns.py b/app/clients/sms/aws_sns.py index 067dcd2a0..22c86f357 100644 --- a/app/clients/sms/aws_sns.py +++ b/app/clients/sms/aws_sns.py @@ -2,7 +2,6 @@ import os import re from time import monotonic -from app.utils import hilite import botocore import phonenumbers from boto3 import client @@ -10,6 +9,7 @@ from boto3 import client from app.clients import AWS_CLIENT_CONFIG from app.clients.sms import SmsClient from app.cloudfoundry_config import cloud_config +from app.utils import hilite class AwsSnsClient(SmsClient): diff --git a/app/user/rest.py b/app/user/rest.py index 704dd5eb7..a789ee128 100644 --- a/app/user/rest.py +++ b/app/user/rest.py @@ -53,7 +53,7 @@ from app.user.users_schema import ( post_verify_code_schema, post_verify_webauthn_schema, ) -from app.utils import hilite, url_with_token, utc_now +from app.utils import url_with_token, utc_now from notifications_utils.recipients import is_us_phone_number, use_numeric_sender user_blueprint = Blueprint("user", __name__)