Skip to content

Commit

Permalink
Fix missing HERD docval ref
Browse files Browse the repository at this point in the history
  • Loading branch information
rly committed Jan 24, 2024
1 parent 91f4241 commit d8f8d5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hdmf/backends/hdf5/h5tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def copy_file(self, **kwargs):
{'name': 'exhaust_dci', 'type': bool,
'doc': 'If True (default), exhaust DataChunkIterators one at a time. If False, exhaust them concurrently.',
'default': True},
{'name': 'herd', 'type': 'HERD',
{'name': 'herd', 'type': 'hdmf.common.resources.HERD',
'doc': 'A HERD object to populate with references.',
'default': None})
def write(self, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion src/hdmf/backends/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def read(self, **kwargs):
return container

@docval({'name': 'container', 'type': Container, 'doc': 'the Container object to write'},
{'name': 'herd', 'type': 'HERD',
{'name': 'herd', 'type': 'hdmf.common.resources.HERD',
'doc': 'A HERD object to populate with references.',
'default': None}, allow_extra=True)
def write(self, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion src/hdmf/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class HERDManager:
This class manages whether to set/attach an instance of HERD to the subclass.
"""

@docval({'name': 'herd', 'type': 'HERD',
@docval({'name': 'herd', 'type': 'hdmf.common.resources.HERD',
'doc': 'The external resources to be used for the container.'},)
def link_resources(self, **kwargs):
"""
Expand Down

0 comments on commit d8f8d5b

Please sign in to comment.