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

Method _repr_inline_

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

Source from the content-addressed store, hash-verified

2143 return f"{type(self).__name__}{props}"
2144
2145 def _repr_inline_(self, max_width: int) -> str:
2146 if self.level is None:
2147 return "MultiIndex"
2148 else:
2149 return super()._repr_inline_(max_width=max_width)
2150
2151 def copy(self, deep: bool = True) -> Self:
2152 # see PandasIndexingAdapter.copy

Callers

nothing calls this directly

Calls 1

_repr_inline_Method · 0.45

Tested by

no test coverage detected