(self, mime)
| 26 | transient=self.transient, update=self.update) |
| 27 | |
| 28 | def _repr_mime_(self, mime): |
| 29 | if mime not in self.data: |
| 30 | return |
| 31 | data = self.data[mime] |
| 32 | if mime in self.metadata: |
| 33 | return data, self.metadata[mime] |
| 34 | else: |
| 35 | return data |
| 36 | |
| 37 | def _repr_mimebundle_(self, include=None, exclude=None): |
| 38 | return self.data, self.metadata |
no outgoing calls
no test coverage detected