(self, shell=None, *args, **kwargs)
| 37 | """ |
| 38 | |
| 39 | def __init__(self, shell=None, *args, **kwargs): |
| 40 | self.shell = shell |
| 41 | super().__init__(*args, **kwargs) |
| 42 | |
| 43 | def _validate_data(self, data, metadata=None): |
| 44 | """Validate the display data. |
nothing calls this directly
no outgoing calls
no test coverage detected