MCPcopy Create free account
hub / github.com/deepelementlab/jupyter-studio / _get_json

Function _get_json

clawcode/clawcode/integrations/github_pr.py:160–163  ·  view source on GitHub ↗
(client: httpx.AsyncClient, url: str, headers: dict[str, str])

Source from the content-addressed store, hash-verified

158
159
160async 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
166def format_pr_comments_markdown(data: dict[str, Any]) -> str:

Callers 2

fetch_pr_commentsFunction · 0.85
fetch_pr_review_contextFunction · 0.85

Calls 1

getMethod · 0.65

Tested by

no test coverage detected