Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmarmo committed Jul 26, 2022
1 parent 44c8da9 commit 2d73e10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion numpy/ma/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -4500,7 +4500,8 @@ def test_masked_invalid_error(self):
a = np.arange(5, dtype=object)
a[3] = np.PINF
a[2] = np.NaN
with pytest.raises(TypeError, match="not supported for the input types"):
with pytest.raises(TypeError,
match="not supported for the input types"):
np.ma.masked_invalid(a)

def test_choose(self):
Expand Down

0 comments on commit 2d73e10

Please sign in to comment.