From c588cea06d3f6754059023dcbba4f0e27f7279b1 Mon Sep 17 00:00:00 2001 From: Luis Antonio Obis Aparicio Date: Sun, 15 Oct 2023 12:12:30 -0500 Subject: [PATCH] add comment --- src/uproot/source/fsspec.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uproot/source/fsspec.py b/src/uproot/source/fsspec.py index 341eb6cce..839196adf 100644 --- a/src/uproot/source/fsspec.py +++ b/src/uproot/source/fsspec.py @@ -139,6 +139,7 @@ def chunks( self._num_requested_bytes += sum(stop - start for start, stop in ranges) chunks = [] + # _cat_file is async while cat_file is not cat_file = self._fs._cat_file if self._fs.async_impl else self._fs.cat_file for start, stop in ranges: future = self._executor.submit(cat_file, self._file_path, start, stop)