(pct: float)
| 653 | # --------------------------------------------------------------------------- |
| 654 | |
| 655 | def _priority_label(pct: float) -> str: |
| 656 | if pct >= 10.0: |
| 657 | return "HIGH" |
| 658 | elif pct >= 3.0: |
| 659 | return "MEDIUM" |
| 660 | else: |
| 661 | return "LOW" |
| 662 | |
| 663 | |
| 664 | def build_report( |