Make a new display with my id, updating existing instances. Parameters ---------- obj: object to display **kwargs: additional keyword arguments passed to display
(self, obj, **kwargs)
| 367 | return "<%s display_id=%s>" % (self.__class__.__name__, self.display_id) |
| 368 | |
| 369 | def display(self, obj, **kwargs): |
| 370 | """Make a new display with my id, updating existing instances. |
| 371 | |
| 372 | Parameters |
| 373 | ---------- |
| 374 | |
| 375 | obj: |
| 376 | object to display |
| 377 | **kwargs: |
| 378 | additional keyword arguments passed to display |
| 379 | """ |
| 380 | display(obj, display_id=self.display_id, **kwargs) |
| 381 | |
| 382 | def update(self, obj, **kwargs): |
| 383 | """Update existing displays with my id |