Skip to content

Commit

Permalink
REF : moved config_file inside the module
Browse files Browse the repository at this point in the history
this should allow the config file to be present when the package is installed as a dependency
  • Loading branch information
benoitberanger committed Apr 26, 2022
1 parent 21dd2bf commit 02c0c75
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion niix2bids/cli.py
Expand Up @@ -93,7 +93,7 @@ def get_parser() -> argparse.ArgumentParser:
),
dest="config_file",
metavar='FILE',
default=os.path.join( os.path.dirname(niix2bids.__path__[0]), 'config_file', 'siemens.py'))
default=os.path.join( niix2bids.__path__[0], 'config_file', 'siemens.py'))

optional.add_argument("-v", "--version",
action="version",
Expand Down
File renamed without changes.

0 comments on commit 02c0c75

Please sign in to comment.