Skip to content

Commit

Permalink
Merge branch 'main-fsspec' into s3fs-default-for-s3
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis authored Nov 16, 2023
2 parents 738bec3 + a0cd734 commit 243bcff
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/uproot/source/fsspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,16 @@ def __init__(self, file_path: str, **options):
# What should we do when there is a chain of filesystems?
self._async_impl = self._fs.async_impl

self._open()

self._executor = None
self._file = None
self._fh = None

self._num_requests = 0
self._num_requested_chunks = 0
self._num_requested_bytes = 0

self._open()

self.__enter__()

def _open(self):
Expand Down

0 comments on commit 243bcff

Please sign in to comment.