Skip to content

Commit

Permalink
remove unused ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
headtr1ck committed Oct 5, 2023
1 parent dc89546 commit 6ad306e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/core/dataarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -4623,7 +4623,7 @@ def _binary_op(
return NotImplemented
if isinstance(other, DataArray):
align_type = OPTIONS["arithmetic_join"]
self, other = align(self, other, join=align_type, copy=False) # type: ignore[type-var,assignment]
self, other = align(self, other, join=align_type, copy=False)
other_variable_or_arraylike: DaCompatible = getattr(other, "variable", other)
other_coords = getattr(other, "coords", None)

Expand Down

0 comments on commit 6ad306e

Please sign in to comment.