Reload the raw data from file or URL.
(self)
| 1251 | self.height = h // 2 |
| 1252 | |
| 1253 | def reload(self): |
| 1254 | """Reload the raw data from file or URL.""" |
| 1255 | if self.embed: |
| 1256 | super(Image,self).reload() |
| 1257 | if self.retina: |
| 1258 | self._retina_shape() |
| 1259 | |
| 1260 | def _repr_html_(self): |
| 1261 | if not self.embed: |
nothing calls this directly
no test coverage detected