Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 committed Jan 11, 2024
1 parent b9b52f2 commit 5fa60cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/hdmf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ def load_termset_config(config_path: str):
Load the configuration file for validation on the fields defined for the objects within the file.
By default, the curated configuration file is used, but can take in a custom file.
"""
return __TS_CONFIG.load_termset_config(config_path)
return TS_CONFIG.load_termset_config(config_path)


def unload_termset_config():
"""
Remove validation.
"""
return __TS_CONFIG.unload_termset_config()
return TS_CONFIG.unload_termset_config()

@docval(
{"name": "dataset", "type": None, "doc": "the HDF5 dataset to slice"},
Expand Down
1 change: 1 addition & 0 deletions src/hdmf/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,3 +233,4 @@ def get_hdf5io(**kwargs):
HERD = get_class('HERD', EXP_NAMESPACE)
SimpleMultiContainer = get_class('SimpleMultiContainer', CORE_NAMESPACE)
AlignedDynamicTable = get_class('AlignedDynamicTable', CORE_NAMESPACE)
breakpoint()
1 change: 0 additions & 1 deletion src/hdmf/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

from .term_set import TermSet, TermSetWrapper


def _set_exp(cls):
"""Set a class as being experimental"""
cls._experimental = True
Expand Down

0 comments on commit 5fa60cd

Please sign in to comment.