diff --git a/scripts/get_config.py b/scripts/get_config.py index 9cdfb2fe..a468d906 100644 --- a/scripts/get_config.py +++ b/scripts/get_config.py @@ -4,7 +4,7 @@ import sys # The config file is in the same directory as this script config_directory = os.path.dirname(__file__) -config_yaml = os.path.join(config_directory, "config.yaml") +# config_yaml = os.path.join(config_directory, "config.yaml") config_json = os.path.join(config_directory, "config.json") parser = argparse.ArgumentParser(description='Get values from config file') @@ -16,15 +16,16 @@ parser.add_argument('key', metavar='key', nargs='+', args = parser.parse_args() -if os.path.isfile(config_yaml): - import yaml - with open(config_yaml, 'r') as configfile: - try: - config = yaml.safe_load(configfile) - except Exception as e: - print(e, file=sys.stderr) - config = {} -elif os.path.isfile(config_json): +# if os.path.isfile(config_yaml): +# import yaml +# with open(config_yaml, 'r') as configfile: +# try: +# config = yaml.safe_load(configfile) +# except Exception as e: +# print(e, file=sys.stderr) +# config = {} +# el +if os.path.isfile(config_json): import json with open(config_json, 'r') as configfile: try: