(result: str)
| 510 | |
| 511 | |
| 512 | def _parse_handler_result(result: str) -> Dict[str, Any]: |
| 513 | try: |
| 514 | return json.loads(result) |
| 515 | except json.JSONDecodeError: |
| 516 | return {"result": result} |
| 517 | |
| 518 | |
| 519 | def _get_error_status_code(payload: Dict[str, Any]) -> int: |
no outgoing calls
no test coverage detected