From 249e4e5468b62362725ab8e6620483d45eb1aa4e Mon Sep 17 00:00:00 2001 From: Sebastien Tourbier Date: Sun, 7 Mar 2021 10:13:07 +0100 Subject: [PATCH] MAINT: Set debug=False in methods of cmtklib/config.py --- cmtklib/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmtklib/config.py b/cmtklib/config.py index ce4b40fa1..3428e9369 100644 --- a/cmtklib/config.py +++ b/cmtklib/config.py @@ -68,7 +68,7 @@ def check_configuration_format(config_path): return ext -def save_configparser_as_json(config, config_json_path, ini_mode=False, debug=True): +def save_configparser_as_json(config, config_json_path, ini_mode=False, debug=False): """Save a ConfigParser to JSON file. Parameters @@ -405,7 +405,7 @@ def get_fmri_process_detail_json(project_info, section, detail): return config[section][detail] -def set_pipeline_attributes_from_config(pipeline, config, debug=True): +def set_pipeline_attributes_from_config(pipeline, config, debug=False): """Set the pipeline stage attributes given a configuration. Parameters