True for verdicts safe to proceed with (trusted / caution).
(self)
| 91 | |
| 92 | @property |
| 93 | def ok(self) -> bool: |
| 94 | """True for verdicts safe to proceed with (trusted / caution).""" |
| 95 | return self.verdict in ("trusted", "caution") |
| 96 | |
| 97 | def as_dict(self) -> dict[str, Any]: |
| 98 | """The minimal {verdict, reason, score} contract, plus did/ok.""" |
no outgoing calls