Skip to content

Commit 6db8225

Browse files
committed
Add booleans
1 parent e31cb6f commit 6db8225

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/zarr/testing/strategies.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121

2222
def dtypes() -> st.SearchStrategy[np.dtype]:
2323
return (
24-
npst.integer_dtypes(endianness="=")
24+
npst.boolean_dtypes()
25+
| npst.integer_dtypes(endianness="=")
2526
| npst.unsigned_integer_dtypes(endianness="=")
2627
| npst.floating_dtypes(endianness="=")
2728
| npst.complex_number_dtypes(endianness="=")

0 commit comments

Comments
 (0)