(x: Any)
| 69 | return x.value |
| 70 | |
| 71 | def from_int(x: Any) -> int: |
| 72 | assert isinstance(x, int) and not isinstance(x, bool) |
| 73 | return x |
| 74 | |
| 75 | def from_datetime(x: Any) -> datetime: |
| 76 | return dateutil.parser.parse(x) |
no outgoing calls
no test coverage detected
searching dependent graphs…