mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-05 15:58:25 -04:00
formatting
This commit is contained in:
@@ -259,13 +259,10 @@ def dao_get_service_primary_contacts(service_ids):
|
||||
if not service_ids:
|
||||
return {}
|
||||
|
||||
stmt = (
|
||||
select(
|
||||
Service.id.label("service_id"),
|
||||
Service.billing_contact_email_addresses.label("email_address"),
|
||||
)
|
||||
.where(Service.id.in_(service_ids))
|
||||
)
|
||||
stmt = select(
|
||||
Service.id.label("service_id"),
|
||||
Service.billing_contact_email_addresses.label("email_address"),
|
||||
).where(Service.id.in_(service_ids))
|
||||
|
||||
results = db.session.execute(stmt).all()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user