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
* Add unhashable to generate_ops
* Regenerate _typed_ops after adding "unhashable"
* Fix variable redefinition
The previous commit revealed the following mypy error:
xarray/core/dataset.py: note: In member "swap_dims" of class "Dataset":
xarray/core/dataset.py:4415: error: Incompatible types in assignment (expression has type "Variable", variable has type "Hashable") [assignment]
xarray/core/dataset.py:4415: note: Following member(s) of "Variable" have conflicts:
xarray/core/dataset.py:4415: note: __hash__: expected "Callable[[], int]", got "None"
xarray/core/dataset.py:4416: error: "Hashable" has no attribute "dims" [attr-defined]
xarray/core/dataset.py:4419: error: "Hashable" has no attribute "to_index_variable" [attr-defined]
xarray/core/dataset.py:4430: error: "Hashable" has no attribute "to_base_variable" [attr-defined]
0 commit comments