remove print statements

This commit is contained in:
Kenneth Kehl
2024-01-05 10:39:07 -08:00
parent 88379c9e46
commit a5f78224b2
3 changed files with 0 additions and 15 deletions

View File

@@ -76,12 +76,10 @@ def send_sms_to_provider(notification):
notification.job_id,
notification.job_row_number,
)
print(f"MY PHONE FROM JOB {my_phone}")
except BaseException:
my_phone = redis_store.get(f"2facode_{notification.id}")
if my_phone:
my_phone = my_phone.decode("utf-8")
print(f"MY PHONE FROM VERIFY CODE {my_phone}")
if my_phone is None:
raise Exception("what happened to the phone number")
send_sms_kwargs = {