# Pastebin uMmf07Ra @property def ignore_password_lockout(self): if (self.id in CONF.security_compliance.lockout_ignored_user_ids): # NOTE(notmorgan): This option is deprecated and subject to # removal in a future release, for now this guarantees the value # in the config option is followed. return True return bool(self._ignore_password_lockout) @ignore_password_lockout.setter def lockout_ignore(self, value): self._ignore_password_lockout = bool(value)