Skip to content

Commit ca245d6

Browse files
committed
ignore the intentionally wrong typing
1 parent 7df95b9 commit ca245d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/tests/test_groupby.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ def test_groupby_dataset_iter() -> None:
728728
def test_groupby_dataset_errors() -> None:
729729
data = create_test_data()
730730
with pytest.raises(TypeError, match=r"`group` must be"):
731-
data.groupby(np.arange(10))
731+
data.groupby(np.arange(10)) # type: ignore
732732
with pytest.raises(ValueError, match=r"length does not match"):
733733
data.groupby(data["dim1"][:3])
734734
with pytest.raises(TypeError, match=r"`group` must be"):

0 commit comments

Comments
 (0)