(self, item: ImagePart)
| 63 | return self._image_parts.__len__() |
| 64 | |
| 65 | def append(self, item: ImagePart): |
| 66 | self._image_parts.append(item) |
| 67 | |
| 68 | def get_or_add_image_part(self, image_descriptor: str | IO[bytes]) -> ImagePart: |
| 69 | """Return |ImagePart| object containing image identified by `image_descriptor`. |
no outgoing calls