Skip to content

Commit ed10140

Browse files
committed
Fix isort + update whats-new
1 parent 6dc7744 commit ed10140

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

doc/whats-new.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ Documentation
8787
- Users are instructed to try ``use_cftime=True`` if a ``TypeError`` occurs when combining datasets and one of the types involved is a subclass of ``cftime.datetime`` (:pull:`5776`).
8888
By `Zeb Nicholls <https://github.com/znicholls>`_.
8989
- Better examples in docstrings for groupby and resampling reductions.
90-
By `Deepak Cherian <https://github.com/dcherian>`_.
90+
By `Deepak Cherian <https://github.com/dcherian>`_,
91+
`Maximilian Roos <https://github.com/max-sixty>`_,
92+
`Jimmy Westling <https://github.com/illviljan>`_ .
9193
- A clearer error is now raised if a user attempts to assign a Dataset to a single key of
9294
another Dataset. (:pull:`5839`)
9395
By `Tom Nicholas <https://github.com/TomNicholas>`_.

xarray/core/_reductions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Mixin classes with reduction operations."""
22
# This file was generated using xarray.util.generate_reductions. Do not edit manually.
33

4-
from typing import Optional, Callable, Union, Sequence, Hashable, Protocol, Any
4+
from typing import Any, Callable, Hashable, Optional, Protocol, Sequence, Union
55

66
from . import duck_array_ops
77
from .types import T_DataArray, T_Dataset

xarray/util/generate_reductions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"""Mixin classes with reduction operations."""
2323
# This file was generated using xarray.util.generate_reductions. Do not edit manually.
2424
25-
from typing import Optional, Callable, Union, Sequence, Hashable, Protocol, Any
25+
from typing import Any, Callable, Hashable, Optional, Protocol, Sequence, Union
2626
2727
from . import duck_array_ops
2828
from .types import T_DataArray, T_Dataset'''

0 commit comments

Comments
 (0)