(value: Any)
| 741 | |
| 742 | |
| 743 | def _as_float(value: Any) -> Optional[float]: |
| 744 | try: |
| 745 | return float(value) |
| 746 | except (TypeError, ValueError): |
| 747 | return None |
| 748 | |
| 749 | |
| 750 | def _as_int(value: Any) -> Optional[int]: |
no outgoing calls
no test coverage detected