We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8d1999f + ee51652 commit 9ed9e7eCopy full SHA for 9ed9e7e
fmriprep/cli/parser.py
@@ -570,10 +570,10 @@ def parse_args(args=None, namespace=None):
570
571
# Load base plugin_settings from file if --use-plugin
572
if opts.use_plugin is not None:
573
- from yaml import load as loadyml
+ import yaml
574
575
with open(opts.use_plugin) as f:
576
- plugin_settings = loadyml(f)
+ plugin_settings = yaml.load(f, Loader=yaml.FullLoader)
577
_plugin = plugin_settings.get("plugin")
578
if _plugin:
579
config.nipype.plugin = _plugin
0 commit comments