From 2897504c1d1d5ac70bc64682692df387ba15b8c2 Mon Sep 17 00:00:00 2001 From: rly Date: Tue, 14 May 2024 11:21:46 -0700 Subject: [PATCH] FIx comment --- lindi/LindiH5ZarrStore/_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lindi/LindiH5ZarrStore/_util.py b/lindi/LindiH5ZarrStore/_util.py index 685dbe9..0badbae 100644 --- a/lindi/LindiH5ZarrStore/_util.py +++ b/lindi/LindiH5ZarrStore/_util.py @@ -81,7 +81,7 @@ def _get_chunk_byte_range(h5_dataset: h5py.Dataset, chunk_coords: tuple) -> tupl def _get_chunk_byte_range_for_chunk_index(h5_dataset: h5py.Dataset, chunk_index: int) -> tuple: """Get the byte range in the file for a chunk of an h5py dataset. - This involves some low-level functions from the h5py library. Use _get_all_chunk_info instead of + This involves some low-level functions from the h5py library. Use _apply_to_all_chunk_info instead of calling this repeatedly for many chunks of the same dataset. """ # got hints from kerchunk source code