diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 66bdae2a2e..588202aae0 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -72,7 +72,7 @@ Zarr supports data compression and filters. For example, to use Blosc compressio >>> z = zarr.create_array( ... "data/example-3.zarr", - ... mode="w", shape=(100, 100), + ... shape=(100, 100), ... chunks=(10, 10), dtype="f4", ... compressors=zarr.codecs.BloscCodec(cname="zstd", clevel=3, shuffle=zarr.codecs.BloscShuffle.shuffle) ... ) @@ -153,7 +153,7 @@ using external libraries like `s3fs `_ or >>> import s3fs # doctest: +SKIP >>> - >>> z = zarr.create_array("s3://example-bucket/foo", mode="w", shape=(100, 100), chunks=(10, 10), dtype="f4") # doctest: +SKIP + >>> z = zarr.create_array("s3://example-bucket/foo", shape=(100, 100), chunks=(10, 10), dtype="f4") # doctest: +SKIP >>> z[:, :] = np.random.random((100, 100)) # doctest: +SKIP A single-file store can also be created using the the :class:`zarr.storage.ZipStore`:: @@ -163,7 +163,6 @@ A single-file store can also be created using the the :class:`zarr.storage.ZipSt >>> >>> z = zarr.create_array( ... store=store, - ... mode="w", ... shape=(100, 100), ... chunks=(10, 10), ... dtype="f4"