(v: Any)
| 99 | |
| 100 | |
| 101 | def as_jsonable_value(v: Any) -> Any: |
| 102 | if type(v) not in (int, str, float, bytes, bool, type(None)): |
| 103 | return to_jsonable_python(v) |
| 104 | return v |
| 105 | |
| 106 | |
| 107 | def expand_grouped_metadata(annotations: Iterable[Any]) -> Iterable[Any]: |
no outgoing calls
no test coverage detected