From d580859c1339b8cf6c3b3ff5b1176c1baff5ce22 Mon Sep 17 00:00:00 2001 From: Illviljan <14371165+Illviljan@users.noreply.github.com> Date: Mon, 19 Sep 2022 23:50:23 +0200 Subject: [PATCH] Remove duplicate examples headers --- flox/xarray.py | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/flox/xarray.py b/flox/xarray.py index e06723e77..9c8fe6108 100644 --- a/flox/xarray.py +++ b/flox/xarray.py @@ -161,6 +161,15 @@ def xarray_reduce( DataArray or Dataset Reduced object + See Also + -------- + flox.core.groupby_reduce + + Raises + ------ + NotImplementedError + ValueError + Examples -------- >>> import xarray as xr @@ -180,19 +189,6 @@ def xarray_reduce( array([3, 2, 2, 2]) Coordinates: * label (label) int64 0 1 2 3 - - See Also - -------- - flox.core.groupby_reduce - - Raises - ------ - NotImplementedError - ValueError - - Examples - -------- - FIXME: Add docs. """ if skipna is not None and isinstance(func, Aggregation):