From 66a555a2d41883285b6242131fa338a1c146c2b7 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 19 Aug 2024 13:11:02 -0700 Subject: [PATCH] remove print statements --- app/main/views/user_profile.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/main/views/user_profile.py b/app/main/views/user_profile.py index f322873fa..0440a682d 100644 --- a/app/main/views/user_profile.py +++ b/app/main/views/user_profile.py @@ -194,7 +194,6 @@ def user_profile_mobile_number_authenticate(): return redirect(url_for(".user_profile_mobile_number")) session[NEW_MOBILE_PASSWORD_CONFIRMED] = True - print(f"GOING TO SEND VERIFY CODE TO {session[NEW_MOBILE]}") current_user.send_verify_code(to=session[NEW_MOBILE]) create_mobile_number_change_event( user_id=current_user.id, @@ -202,9 +201,6 @@ def user_profile_mobile_number_authenticate(): original_mobile_number=current_user.mobile_number, new_mobile_number=session[NEW_MOBILE], ) - print( - f"sent create_mobile_number_change_event original {current_user.mobile_number} new {session[NEW_MOBILE]}" - ) return redirect(url_for(".user_profile_mobile_number_confirm")) # return render_template(