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 @@ -255,7 +255,9 @@ async def set(
255255 await self ._open ()
256256 self ._check_writable ()
257257 if not isinstance (value , Buffer ):
258- raise TypeError (f"FsspecStore.set(): `value` must a Buffer instance. Got an instance of { type (value )} instead." )
258+ raise TypeError (
259+ f"FsspecStore.set(): `value` must a Buffer instance. Got an instance of { type (value )} instead."
260+ )
259261 path = _dereference_path (self .path , key )
260262 # write data
261263 if byte_range :
Original file line number Diff line number Diff line change 1515@pytest .mark .parametrize ("zarr_format" , [2 , 3 ])
1616async def test_contains_group (local_store , write_group : bool , zarr_format : ZarrFormat ) -> None :
1717 """
18- Test that the contains_group method correctly reports the existence of a group.
18+ Test that the contains_group method correctly reports the existence of a group.
1919 """
2020 root = Group .from_store (store = local_store , zarr_format = zarr_format )
2121 if write_group :
You can’t perform that action at this time.
0 commit comments