diff --git a/app/models/service.py b/app/models/service.py index ebcfa7594f..7da2ff3c6b 100644 --- a/app/models/service.py +++ b/app/models/service.py @@ -602,7 +602,7 @@ def api_keys(self): @property def able_to_accept_agreement(self): - return self.organisation.agreement_signed is not None or self.organisation_type in { + return self.organisation.agreement_signed is not False or self.organisation_type in { Organisation.TYPE_NHS_GP, Organisation.TYPE_NHS_LOCAL, }