(self)
| 23 | self.update = update |
| 24 | |
| 25 | def display(self): |
| 26 | from IPython.display import publish_display_data |
| 27 | publish_display_data(data=self.data, metadata=self.metadata, |
| 28 | transient=self.transient, update=self.update) |
| 29 | |
| 30 | def _repr_mime_(self, mime): |
| 31 | if mime not in self.data: |