Skip to content

Commit 48abe94

Browse files
committed
Lint
1 parent 4dba40c commit 48abe94

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/zarr/storage/_fsspec.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

tests/test_store/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@pytest.mark.parametrize("zarr_format", [2, 3])
1616
async 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:

0 commit comments

Comments
 (0)