(seconds: int)
| 95 | |
| 96 | |
| 97 | def _fmt_duration(seconds: int) -> str: |
| 98 | if seconds < 60: |
| 99 | return f"{seconds}s" |
| 100 | m, s = divmod(seconds, 60) |
| 101 | return f"{m}m{s:02d}s" |
| 102 | |
| 103 | |
| 104 | def _fmt_targets(targets: list[str]) -> str: |
no outgoing calls
no test coverage detected