(value: Dict[str, Any])
| 222 | |
| 223 | |
| 224 | def _dict_encoder(value: Dict[str, Any]) -> Dict[str, DocumentValue]: |
| 225 | return {f_name: _map_value_to_document_value(val) for f_name, val in value.items()} |
| 226 | |
| 227 | |
| 228 | def _list_encoder(value: List[Any]) -> List[DocumentValue]: |
nothing calls this directly
no test coverage detected
searching dependent graphs…