From 597f2b0a8ba1365e3a99f32df5154f6a9d40147b Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 15 Oct 2024 11:17:23 -0700 Subject: [PATCH] remove all() from statement --- app/dao/fact_billing_dao.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/dao/fact_billing_dao.py b/app/dao/fact_billing_dao.py index f5fd93089..b99107a5f 100644 --- a/app/dao/fact_billing_dao.py +++ b/app/dao/fact_billing_dao.py @@ -764,7 +764,6 @@ def fetch_billing_details_for_all_services(): ) .select_from(Service) .outerjoin(Service.organization) - .all() ) return db.session.execute(billing_details).all()