(value: List[Any])
| 226 | |
| 227 | |
| 228 | def _list_encoder(value: List[Any]) -> List[DocumentValue]: |
| 229 | return [_map_value_to_document_value(item) for item in value] |
| 230 | |
| 231 | |
| 232 | def _decimal_encoder(value: Union[int, float]) -> Decimal: |
nothing calls this directly
no test coverage detected
searching dependent graphs…