Skip to content

Commit

Permalink
path
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 committed Jan 19, 2024
1 parent 52cb3c5 commit 18911f2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pynwb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@

from .termset_config import NWBTermSetConfigurator


nwb_config = NWBTermSetConfigurator(path='src/pynwb/config/nwb_config.yaml')
CUR_DIR = os.path.dirname(os.path.realpath(__file__))
path_to_config = os.path.join(CUR_DIR, 'config/nwb_config.yaml')
nwb_config = NWBTermSetConfigurator(path=path_to_config)

@docval({'name': 'config_path', 'type': str, 'doc': 'Path to the configuartion file.',

Check failure on line 27 in src/pynwb/__init__.py

View workflow job for this annotation

GitHub Actions / Check for spelling errors

configuartion ==> configuration
'default': None})
Expand Down

0 comments on commit 18911f2

Please sign in to comment.