From f1118d6a198b5279011679e6e383206b77ba7867 Mon Sep 17 00:00:00 2001 From: Andrew Shumway Date: Thu, 16 Jan 2025 08:59:27 -0700 Subject: [PATCH] Remove print statement --- app/dao/notifications_dao.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/dao/notifications_dao.py b/app/dao/notifications_dao.py index b5690e535..ba04f24ba 100644 --- a/app/dao/notifications_dao.py +++ b/app/dao/notifications_dao.py @@ -101,13 +101,7 @@ def dao_create_notification(notification): # Ensure the created at value is set and debug. if notification.notification_type == "email": orig_time = notification.created_at - now_time = utc_now() - print( - hilite( - f"original time: {orig_time} - {type(orig_time)} \n now time: {now_time} - {type(now_time)}" - ) - ) try: diff_time = now_time - orig_time except TypeError: