(self)
| 149 | |
| 150 | @property |
| 151 | def __inflated(self) -> Mapping[str, Any]: |
| 152 | if self.__inflated_doc is None: |
| 153 | # We already validated the object's size when this document was |
| 154 | # created, so no need to do that again. |
| 155 | self.__inflated_doc = self._inflate_bson(self.__raw, self.__codec_options) |
| 156 | return self.__inflated_doc |
| 157 | |
| 158 | @staticmethod |
| 159 | def _inflate_bson( |
nothing calls this directly
no test coverage detected