import json def load_config(config_path, logger=None): try: with open(config_path, "rt") as config_file: return json.load(config_file) except (OSError, json.decoder.JSONDecodeError) as exc: logger.critical(f"Could not load config file: {exc}") exit()