Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored Nov 14, 2024
1 parent 631c304 commit d76b76e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hdmf/backends/hdf5/h5_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def append(self, dataset, data):


class H5Dataset(HDMFDataset):
@docval({'name': 'dataset', 'type': (Dataset), 'doc': 'the HDF5 file lazily evaluate'},
@docval({'name': 'dataset', 'type': Dataset, 'doc': 'the HDF5 file lazily evaluate'},
{'name': 'io', 'type': 'hdmf.backends.hdf5.h5tools.HDF5IO',
'doc': 'the IO object that was used to read the underlying dataset'})
def __init__(self, **kwargs):
Expand Down Expand Up @@ -183,7 +183,7 @@ def get_object(self, h5obj):

class AbstractH5TableDataset(DatasetOfReferences):

@docval({'name': 'dataset', 'type': (Dataset), 'doc': 'the HDF5 file lazily evaluate'},
@docval({'name': 'dataset', 'type': Dataset, 'doc': 'the HDF5 file lazily evaluate'},
{'name': 'io', 'type': 'hdmf.backends.hdf5.h5tools.HDF5IO',
'doc': 'the IO object that was used to read the underlying dataset'},
{'name': 'types', 'type': (list, tuple),
Expand Down

0 comments on commit d76b76e

Please sign in to comment.