Reload the raw data from file or URL.
(self)
| 1054 | self.height = h // 2 |
| 1055 | |
| 1056 | def reload(self): |
| 1057 | """Reload the raw data from file or URL.""" |
| 1058 | if self.embed: |
| 1059 | super(Image,self).reload() |
| 1060 | if self.retina: |
| 1061 | self._retina_shape() |
| 1062 | |
| 1063 | def _repr_html_(self): |
| 1064 | if not self.embed: |
nothing calls this directly
no test coverage detected