(text: str)
| 4311 | |
| 4312 | @staticmethod |
| 4313 | def _parse_json_response_text(text: str) -> Optional[Any]: |
| 4314 | if not text: |
| 4315 | return None |
| 4316 | try: |
| 4317 | return json.loads(text) |
| 4318 | except Exception: |
| 4319 | return None |
| 4320 | |
| 4321 | @staticmethod |
| 4322 | async def _stdlib_json_http_request( |
no outgoing calls
no test coverage detected