From 80d05532e7f0884b884c30230607dbf6056cfb0d Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 17 Oct 2024 13:22:41 -0700 Subject: [PATCH] fix delete_inbound_sms_older_than_retention and dao_get_inbound_sms_by_id --- app/dao/inbound_sms_dao.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/dao/inbound_sms_dao.py b/app/dao/inbound_sms_dao.py index e7d0a9dff..eeec016ce 100644 --- a/app/dao/inbound_sms_dao.py +++ b/app/dao/inbound_sms_dao.py @@ -133,7 +133,6 @@ def delete_inbound_sms_older_than_retention(): select(ServiceDataRetention) .join(ServiceDataRetention.service) .filter(ServiceDataRetention.notification_type == NotificationType.SMS) - .all() ) flexible_data_retention = db.session.execute(stmt).all()