(self, shell=None, *args, **kwargs)
| 41 | """ |
| 42 | |
| 43 | def __init__(self, shell=None, *args, **kwargs): |
| 44 | self.shell = shell |
| 45 | self._is_publishing = False |
| 46 | self._in_post_execute = False |
| 47 | if self.shell: |
| 48 | self._setup_execution_tracking() |
| 49 | super().__init__(*args, **kwargs) |
| 50 | |
| 51 | def _validate_data(self, data, metadata=None): |
| 52 | """Validate the display data. |
nothing calls this directly
no test coverage detected