Generate a markdown table row for a committer.
(committer: Committer)
| 132 | |
| 133 | |
| 134 | def generate_table_row(committer: Committer) -> str: |
| 135 | """Generate a markdown table row for a committer.""" |
| 136 | github_link = f"[{committer.github}](https://github.com/{committer.github})" |
| 137 | return f"| {committer.name:<23} | {committer.apache:<39} |{committer.github:<39} | {committer.affiliation:<11} | {committer.role:<9} |" |
| 138 | |
| 139 | |
| 140 | def sort_committers(committers: List[Committer]) -> List[Committer]: |
no outgoing calls
no test coverage detected
searching dependent graphs…