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 e968ac5 commit c3f5401Copy full SHA for c3f5401
src/zarr/testing/strategies.py
@@ -60,7 +60,7 @@ def v2_dtypes() -> st.SearchStrategy[np.dtype]:
60
)
61
array_names = node_names
62
attrs = st.none() | st.dictionaries(_attr_keys, _attr_values)
63
-paths = st.lists(node_names, min_size=1).map(lambda x: "/".join(x)) | st.just("/")
+paths = st.lists(node_names, min_size=1).map("/".join) | st.just("/")
64
stores = st.builds(MemoryStore, st.just({}), mode=st.just("w"))
65
compressors = st.sampled_from([None, "default"])
66
zarr_formats: st.SearchStrategy[Literal[2, 3]] = st.sampled_from([2, 3])
0 commit comments