Remove print statement

This commit is contained in:
Andrew Shumway
2025-01-16 08:59:27 -07:00
parent 3fd8009e33
commit f1118d6a19

View File

@@ -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: