more code review feedback

This commit is contained in:
Kenneth Kehl
2024-12-20 08:09:19 -08:00
parent a77343ebc7
commit 3c0621f472
22 changed files with 125 additions and 133 deletions

View File

@@ -107,7 +107,7 @@ def _get_first_service():
def _get_service_by_id(service_id):
stmt = select(Service).filter(Service.id == service_id)
stmt = select(Service).where(Service.id == service_id)
service = db.session.execute(stmt).scalars().one()
return service