Skip to content

Commit c636fbf

Browse files
committed
Improved type hints [skip ci]
1 parent 72b3a16 commit c636fbf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_bit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def test_ndarray_uint8(self):
6262
def test_ndarray_uint16(self):
6363
arr = np.array([254, 7, 0], dtype=np.uint16)
6464
with pytest.raises(ValueError) as error:
65-
Bit(arr)
65+
Bit(arr) # type: ignore
6666
assert str(error.value) == 'expected elements to be boolean'
6767

6868
def test_bool(self):

0 commit comments

Comments
 (0)