(d: date | None)
| 915 | lines.append(f"- Verification-stale (> {pol.warn_if_verified_older_than_days}d): **{t['verified_stale']}**\n\n") |
| 916 | |
| 917 | def fmt_date(d: date | None) -> str: |
| 918 | return d.isoformat() if d else "-" |
| 919 | |
| 920 | warn_recs = [r for r in report.records if r.warnings and not (r.meta and r.meta.ignore)] |
| 921 | warn_recs.sort( |