Skip to content

Commit

Permalink
Update h5tools.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 authored Aug 15, 2024
1 parent de09081 commit dc78d6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/hdmf/backends/hdf5/h5tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def copy_file(self, **kwargs):
'doc': 'A HERD object to populate with references.',
'default': None},
{'name': 'expandable', 'type': bool, 'default': True,
'doc': ('Bool to set whether datasets are expandable by setting the max shape for all dimensions',
'doc': ('Bool to set whether datasets are expandable by setting the maxshape for all schema allowed dimensions',
'of a dataset to None and enabling auto-chunking by default.')})
def write(self, **kwargs):
"""Write the container to an HDF5 file."""
Expand Down Expand Up @@ -831,7 +831,7 @@ def close_linked_files(self):
{'name': 'export_source', 'type': str,
'doc': 'The source of the builders when exporting', 'default': None},
{'name': 'expandable', 'type': bool, 'default': True,
'doc': ('Bool to set whether datasets are expandable by setting the max shape for all dimensions',
'doc': ('Bool to set whether datasets are expandable by setting the maxshape for all schema allowed dimensions',
'of a dataset to None and enabling auto-chunking by default.')})
def write_builder(self, **kwargs):
f_builder = popargs('builder', kwargs)
Expand Down Expand Up @@ -1010,7 +1010,7 @@ def _filler():
{'name': 'export_source', 'type': str,
'doc': 'The source of the builders when exporting', 'default': None},
{'name': 'expandable', 'type': bool, 'default': True,
'doc': ('Bool to set whether datasets are expandable by setting the max shape for all dimensions',
'doc': ('Bool to set whether datasets are expandable by setting the maxshape for all schema allowed dimensions',
'of a dataset to None and enabling auto-chunking by default.')},
returns='the Group that was created', rtype=Group)
def write_group(self, **kwargs):
Expand Down Expand Up @@ -1113,7 +1113,7 @@ def write_link(self, **kwargs):
{'name': 'export_source', 'type': str,
'doc': 'The source of the builders when exporting', 'default': None},
{'name': 'expandable', 'type': bool, 'default': True,
'doc': ('Bool to set whether datasets are expandable by setting the max shape for all dimensions',
'doc': ('Bool to set whether datasets are expandable by setting the maxshape for all schema allowed dimensions',
'of a dataset to None and enabling auto-chunking by default.')},
returns='the Dataset that was created', rtype=Dataset)
def write_dataset(self, **kwargs): # noqa: C901
Expand Down

0 comments on commit dc78d6b

Please sign in to comment.