(
bson_bytes: bytes | memoryview, codec_options: CodecOptions[RawBSONDocument]
)
| 157 | |
| 158 | @staticmethod |
| 159 | def _inflate_bson( |
| 160 | bson_bytes: bytes | memoryview, codec_options: CodecOptions[RawBSONDocument] |
| 161 | ) -> Mapping[str, Any]: |
| 162 | return _inflate_bson(bson_bytes, codec_options) |
| 163 | |
| 164 | def __getitem__(self, item: str) -> Any: |
| 165 | return self.__inflated[item] |
no test coverage detected