Update an existing display by id Parameters ---------- obj The object with which to update the display display_id : keyword-only The id of the display to update See Also -------- :func:`display`
(obj, *, display_id, **kwargs)
| 289 | |
| 290 | # use * for keyword-only display_id arg |
| 291 | def update_display(obj, *, display_id, **kwargs): |
| 292 | """Update an existing display by id |
| 293 | |
| 294 | Parameters |
| 295 | ---------- |
| 296 | obj |
| 297 | The object with which to update the display |
| 298 | display_id : keyword-only |
| 299 | The id of the display to update |
| 300 | |
| 301 | See Also |
| 302 | -------- |
| 303 | :func:`display` |
| 304 | """ |
| 305 | kwargs['update'] = True |
| 306 | display(obj, display_id=display_id, **kwargs) |
| 307 | |
| 308 | |
| 309 | class DisplayHandle: |