Fix typo in function name

This commit is contained in:
Rebecca Law
2020-02-17 11:12:54 +00:00
parent 42f02c8c24
commit 49533d7792
3 changed files with 4 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ def dao_get_organisations():
).all()
def dao_count_organsations_with_live_services():
def dao_count_organisations_with_live_services():
return db.session.query(Organisation.id).join(Organisation.services).filter(
Service.active.is_(True),
Service.restricted.is_(False),