(params, record, force_update=False)
| 189 | |
| 190 | @staticmethod |
| 191 | def update_security_data(params, record, force_update=False): |
| 192 | # type: (KeeperParams, KeeperRecord, Optional[bool]) -> None |
| 193 | if force_update or needs_security_audit(params, record): |
| 194 | update_security_audit_data(params, [record]) |
| 195 | |
| 196 | @staticmethod |
| 197 | def save_reused_pw_count(params): |
no test coverage detected