Skip to content

Commit

Permalink
Fix first, last
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian committed Dec 2, 2023
1 parent 6d8e822 commit deec828
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions xarray/core/groupby.py
Expand Up @@ -33,7 +33,6 @@
safe_cast_to_index,
)
from xarray.core.options import _get_keep_attrs
from xarray.core.pycompat import integer_types
from xarray.core.types import Dims, QuantileMethods, T_DataArray, T_Xarray
from xarray.core.utils import (
either_dict_or_kwargs,
Expand Down Expand Up @@ -1296,7 +1295,11 @@ def where(self, cond, other=dtypes.NA) -> T_Xarray:
return ops.where_method(self, cond, other)

def _first_or_last(self, op, skipna, keep_attrs):
if isinstance(self._group_indices[0], integer_types):
if all(
isinstance(maybe_slice, slice)
and (maybe_slice.stop == maybe_slice.start + 1)
for maybe_slice in self._group_indices
):
# NB. this is currently only used for reductions along an existing
# dimension
return self._obj
Expand Down

0 comments on commit deec828

Please sign in to comment.