Skip to content

Commit 185c84e

Browse files
committed
patch 0.7.1 bump-version
1 parent fd44e5d commit 185c84e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/funlib/persistence/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .arrays import Array, open_ds, prepare_ds, open_ome_ds, prepare_ome_ds # noqa
22

3-
__version__ = "0.7.0"
3+
__version__ = "0.7.1"
44
__version_info__ = tuple(int(i) for i in __version__.split("."))

src/funlib/persistence/arrays/datasets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def prepare_ds(
333333
else:
334334
if mode == "w":
335335
logger.info(
336-
"Existing dataset is compatible, but mode is 'w' and thus the existing dataset will be deleted.
336+
"Existing dataset is compatible, but mode is 'w' and thus the existing dataset will be deleted."
337337
)
338338
else:
339339
ds = zarr.open(store, mode=mode, **kwargs)

0 commit comments

Comments
 (0)