We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72b3a16 commit c636fbfCopy full SHA for c636fbf
1 file changed
tests/test_bit.py
@@ -62,7 +62,7 @@ def test_ndarray_uint8(self):
62
def test_ndarray_uint16(self):
63
arr = np.array([254, 7, 0], dtype=np.uint16)
64
with pytest.raises(ValueError) as error:
65
- Bit(arr)
+ Bit(arr) # type: ignore
66
assert str(error.value) == 'expected elements to be boolean'
67
68
def test_bool(self):
0 commit comments