(text: str)
| 279 | |
| 280 | |
| 281 | def _parse_json_response_text(text: str) -> Optional[Any]: |
| 282 | if not text: |
| 283 | return None |
| 284 | try: |
| 285 | return json.loads(text) |
| 286 | except Exception: |
| 287 | return None |
| 288 | |
| 289 | |
| 290 | async def _stdlib_json_http_request( |
no outgoing calls
no test coverage detected