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)
| 330 | return "<%s display_id=%s>" % (self.__class__.__name__, self.display_id) |
| 331 | |
| 332 | def display(self, obj, **kwargs): |
| 333 | """Make a new display with my id, updating existing instances. |
| 334 | |
| 335 | Parameters |
| 336 | ---------- |
| 337 | obj |
| 338 | object to display |
| 339 | **kwargs |
| 340 | additional keyword arguments passed to display |
| 341 | """ |
| 342 | display(obj, display_id=self.display_id, **kwargs) |
| 343 | |
| 344 | def update(self, obj, **kwargs): |
| 345 | """Update existing displays with my id |