Skip to content

Commit 88a39ff

Browse files
committed
Fix N5Store
1 parent f2f75b7 commit 88a39ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zarr/n5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def invert_chunk_coords(key):
295295
last_segment = segments[-1]
296296
if _prog_ckey.match(last_segment):
297297
coords = list(last_segment.split('.'))
298-
last_segment = '.'.join(coords[::-1])
298+
last_segment = '/'.join(coords[::-1])
299299
segments = segments[:-1] + [last_segment]
300300
key = '/'.join(segments)
301301
return key

0 commit comments

Comments
 (0)