(value: Any)
| 151 | |
| 152 | |
| 153 | def _safe_int(value: Any) -> int: |
| 154 | try: |
| 155 | return int(value) |
| 156 | except (TypeError, ValueError): |
| 157 | return 0 |
| 158 | |
| 159 | |
| 160 | def _request_metrics_from_serialized_input(serialized_input: list[dict[str, Any]]) -> dict[str, int]: |
no outgoing calls
no test coverage detected