(
bytes_data: bytes,
setters: Dict[str, Callable[[bytes], Any]],
exclude: Iterable[str],
)
| 1393 | |
| 1394 | |
| 1395 | def from_bytes( |
| 1396 | bytes_data: bytes, |
| 1397 | setters: Dict[str, Callable[[bytes], Any]], |
| 1398 | exclude: Iterable[str], |
| 1399 | ) -> None: |
| 1400 | return from_dict(srsly.msgpack_loads(bytes_data), setters, exclude) # type: ignore[return-value] |
| 1401 | |
| 1402 | |
| 1403 | def to_dict( |
nothing calls this directly
no test coverage detected
searching dependent graphs…