You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_repr_inline_ looks like an IPython special method but is actually includes some xarray specific details: the result should not include shape or dtype.
As I wrote in #5352, I would suggest revising it in one of two ways:
Giving it a name like _xarray_repr_inline_ to make it clearer that it's Xarray specific
Include some more generic way of indicating that shape/dtype is redundant, e.g,. call it like obj._repr_ndarray_inline_(dtype=False, shape=False)
The text was updated successfully, but these errors were encountered:
_repr_inline_
looks like an IPython special method but is actually includes some xarray specific details: the result should not includeshape
ordtype
.As I wrote in #5352, I would suggest revising it in one of two ways:
_xarray_repr_inline_
to make it clearer that it's Xarray specificshape
/dtype
is redundant, e.g,. call it likeobj._repr_ndarray_inline_(dtype=False, shape=False)
The text was updated successfully, but these errors were encountered: