| 166 | |
| 167 | |
| 168 | class ContributorsResults(BaseModel): |
| 169 | contributors: Counter[str] |
| 170 | translation_reviewers: Counter[str] |
| 171 | translators: Counter[str] |
| 172 | authors: dict[str, Author] |
| 173 | |
| 174 | |
| 175 | def get_contributors(pr_nodes: list[PullRequestNode]) -> ContributorsResults: |
no outgoing calls
no test coverage detected
searching dependent graphs…