Skip to content

Commit b0da1f5

Browse files
committed
tweak comment [ci skip]
1 parent 56e2384 commit b0da1f5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

zarr/tests/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ def test_pickle(self):
673673

674674
# round trip through pickle
675675
dump = pickle.dumps(z)
676-
# some stores cannot be opened twice at the same time, need to close first
676+
# some stores cannot be opened twice at the same time, need to close
677677
# store before can round-trip through pickle
678678
if hasattr(z.store, 'close'):
679679
z.store.close()

zarr/tests/test_hierarchy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ def test_pickle(self):
832832

833833
# round-trip through pickle
834834
dump = pickle.dumps(g)
835-
# some stores cannot be opened twice at the same time, need to close first
835+
# some stores cannot be opened twice at the same time, need to close
836836
# store before can round-trip through pickle
837837
if hasattr(g.store, 'close'):
838838
g.store.close()

zarr/tests/test_storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def test_pickle(self):
138138

139139
# round-trip through pickle
140140
dump = pickle.dumps(store)
141-
# some stores cannot be opened twice at the same time, need to close first
141+
# some stores cannot be opened twice at the same time, need to close
142142
# store before can round-trip through pickle
143143
if hasattr(store, 'close'):
144144
store.close()

0 commit comments

Comments
 (0)