Skip to content
forked from pydata/xarray

Commit

Permalink
Fix isort + update whats-new
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian committed Oct 24, 2021
1 parent 6dc7744 commit ed10140
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ Documentation
- 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`).
By `Zeb Nicholls <https://github.com/znicholls>`_.
- Better examples in docstrings for groupby and resampling reductions.
By `Deepak Cherian <https://github.com/dcherian>`_.
By `Deepak Cherian <https://github.com/dcherian>`_,
`Maximilian Roos <https://github.com/max-sixty>`_,
`Jimmy Westling <https://github.com/illviljan>`_ .
- A clearer error is now raised if a user attempts to assign a Dataset to a single key of
another Dataset. (:pull:`5839`)
By `Tom Nicholas <https://github.com/TomNicholas>`_.
Expand Down
2 changes: 1 addition & 1 deletion xarray/core/_reductions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Mixin classes with reduction operations."""
# This file was generated using xarray.util.generate_reductions. Do not edit manually.

from typing import Optional, Callable, Union, Sequence, Hashable, Protocol, Any
from typing import Any, Callable, Hashable, Optional, Protocol, Sequence, Union

from . import duck_array_ops
from .types import T_DataArray, T_Dataset
Expand Down
2 changes: 1 addition & 1 deletion xarray/util/generate_reductions.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""Mixin classes with reduction operations."""
# This file was generated using xarray.util.generate_reductions. Do not edit manually.
from typing import Optional, Callable, Union, Sequence, Hashable, Protocol, Any
from typing import Any, Callable, Hashable, Optional, Protocol, Sequence, Union
from . import duck_array_ops
from .types import T_DataArray, T_Dataset'''
Expand Down

0 comments on commit ed10140

Please sign in to comment.