(items: dict[str, str])
| 512 | |
| 513 | |
| 514 | def _section_has_useful_values(items: dict[str, str]) -> bool: |
| 515 | for value in items.values(): |
| 516 | if value not in {"not-installed", "unknown", "not-found", "unavailable"}: |
| 517 | return True |
| 518 | return False |
| 519 | |
| 520 | |
| 521 | def collect_debug_sections( |
no outgoing calls
no test coverage detected