Skip to content

Commit

Permalink
grab kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Feb 17, 2024
1 parent 67d3e3b commit 7928d6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hdmf/backends/hdf5/h5tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ def __init__(self, **kwargs):
"""Open an HDF5 file for IO.
"""
self.logger = logging.getLogger('%s.%s' % (self.__class__.__module__, self.__class__.__qualname__))
path, manager, mode, comm, file_obj, driver, herd_path = popargs('path', 'manager', 'mode',
path, manager, mode, comm, file_obj, driver, aws_region, herd_path = popargs('path', 'manager', 'mode',
'comm', 'file', 'driver',
'herd_path',
'aws_region', 'herd_path',
kwargs)

self.__open_links = [] # keep track of other files opened from links in this file
Expand Down

0 comments on commit 7928d6d

Please sign in to comment.