Format the dependency for the table.
(dependency: str)
| 23 | |
| 24 | |
| 25 | def format_dependency(dependency: str) -> str: |
| 26 | """Format the dependency for the table.""" |
| 27 | return "coverage__" if dependency == "coverage" else f"{dependency}_" |
| 28 | |
| 29 | |
| 30 | def main() -> None: |