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