From 312ae5e89ecf0f172d1a6d422c0c1314724dc497 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 12 Nov 2024 15:19:52 -0800 Subject: [PATCH] put number all on one line --- app/clients/sms/aws_sns.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/clients/sms/aws_sns.py b/app/clients/sms/aws_sns.py index 79a1ce471..d36af600c 100644 --- a/app/clients/sms/aws_sns.py +++ b/app/clients/sms/aws_sns.py @@ -63,11 +63,10 @@ class AwsSnsClient(SmsClient): } } + default_num = " ".join(self.current_app.config["AWS_US_TOLL_FREE_NUMBER"]) if isinstance(sender, str): non_scrubbable = " ".join(sender) - default_num = " ".join( - self.current_app.config["AWS_US_TOLL_FREE_NUMBER"] - ) + self.current_app.logger.info( f"notify-api-1385 sender {non_scrubbable} is a {type(sender)} default is a {type(default_num)}" )