File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -312,7 +312,8 @@ async def set_partial_values(
312312 """
313313 # NOTE: pyo3 does not implicit conversion from an Iterable to a rust iterable. So we convert it
314314 # to a list here first. Possible opportunity for optimization.
315- return await self ._store .set_partial_values (list (key_start_values ))
315+ # NOTE: currently we only implement the case where the values are bytes
316+ return await self ._store .set_partial_values (list (key_start_values )) # type: ignore[arg-type]
316317
317318 @property
318319 def supports_listing (self ) -> bool :
Original file line number Diff line number Diff line change 2323)
2424from xarray .tests .test_backends import (
2525 ZarrBase ,
26- default_zarr_format , # noqa: F401; needed otherwise not discovered
26+ # needed otherwise not discovered
27+ default_zarr_format , # noqa: F401, RUF100
2728)
2829
2930
You can’t perform that action at this time.
0 commit comments