(client: httpx.AsyncClient, url: str, headers: dict[str, str])
| 158 | |
| 159 | |
| 160 | async def _get_json(client: httpx.AsyncClient, url: str, headers: dict[str, str]) -> Any: |
| 161 | r = await client.get(url, headers=headers) |
| 162 | r.raise_for_status() |
| 163 | return r.json() |
| 164 | |
| 165 | |
| 166 | def format_pr_comments_markdown(data: dict[str, Any]) -> str: |
no test coverage detected