(x: Any)
| 45 | return cast(Any, x).to_dict() |
| 46 | |
| 47 | def from_bool(x: Any) -> bool: |
| 48 | assert isinstance(x, bool) |
| 49 | return x |
| 50 | |
| 51 | def from_float(x: Any) -> float: |
| 52 | assert isinstance(x, (float, int)) and not isinstance(x, bool) |
no outgoing calls
no test coverage detected
searching dependent graphs…