(self, max_width: int)
| 2252 | return f"{type(self).__name__}(transform={self._transform!r})" |
| 2253 | |
| 2254 | def _repr_inline_(self, max_width: int) -> str: |
| 2255 | # we want to display values in the inline repr for this lazy coordinate |
| 2256 | # `format_array_flat` prevents loading the whole array in memory. |
| 2257 | from xarray.core.formatting import format_array_flat |
| 2258 | |
| 2259 | return format_array_flat(self, max_width) |
nothing calls this directly
no test coverage detected