Skip to content

Commit 1b7cf9a

Browse files
committed
cleanup
1 parent ebc5743 commit 1b7cf9a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/zarr/storage/_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def log(self, hint: Any = "") -> Generator[None, None, None]:
8888
op = f"{type(self._store).__name__}.{method}"
8989
if hint:
9090
op = f"{op}({hint})"
91-
self.logger.info("Calling %s", op)
91+
self.logger.info(" Calling %s", op)
9292
start_time = time.time()
9393
try:
9494
self.counter[method] += 1

tests/test_properties.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import hypothesis.extra.numpy as npst
99
import hypothesis.strategies as st
10-
from hypothesis import assume, given, note
10+
from hypothesis import assume, given
1111

1212
from zarr.abc.store import Store
1313
from zarr.core.metadata import ArrayV2Metadata, ArrayV3Metadata
@@ -77,7 +77,6 @@ def test_oindex(data: st.DataObject) -> None:
7777
new_data = data.draw(npst.arrays(shape=st.just(actual.shape), dtype=nparray.dtype))
7878
nparray[npindexer] = new_data
7979
zarray.oindex[zindexer] = new_data
80-
note((new_data, npindexer, nparray, zindexer, zarray[:]))
8180
assert_array_equal(nparray, zarray[:])
8281

8382

0 commit comments

Comments
 (0)