(d: date | None, today: date)
| 583 | |
| 584 | |
| 585 | def compute_days_since(d: date | None, today: date) -> int | None: |
| 586 | return None if d is None else (today - d).days |
| 587 | |
| 588 | |
| 589 | def match_allowlist(rel_path: str, allowlist: list[str]) -> bool: |
no outgoing calls
no test coverage detected