MCPcopy Index your code
hub / github.com/pydata/xarray / _repr_inline_

Method _repr_inline_

xarray/core/indexing.py:2254–2259  ·  view source on GitHub ↗
(self, max_width: int)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

format_array_flatFunction · 0.90

Tested by

no test coverage detected