File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ def _warn_write_empty_chunks_kwarg() -> None:
195
195
msg = (
196
196
"The `write_empty_chunks` keyword argument is deprecated and will be removed in future versions. "
197
197
"To control whether empty chunks are written to storage, either use the `config` keyword "
198
- "argument, as in `config={'write_empty_chunks: True}`,"
198
+ "argument, as in `config={'write_empty_chunks' : True}`,"
199
199
"or change the global 'array.write_empty_chunks' configuration variable."
200
200
)
201
201
warnings .warn (msg , RuntimeWarning , stacklevel = 2 )
@@ -206,7 +206,7 @@ def _warn_order_kwarg() -> None:
206
206
msg = (
207
207
"The `order` keyword argument has no effect for Zarr format 3 arrays. "
208
208
"To control the memory layout of the array, either use the `config` keyword "
209
- "argument, as in `config={'order: 'C'}`,"
209
+ "argument, as in `config={'order' : 'C'}`,"
210
210
"or change the global 'array.order' configuration variable."
211
211
)
212
212
warnings .warn (msg , RuntimeWarning , stacklevel = 2 )
You can’t perform that action at this time.
0 commit comments