From f7e86e948a9e96eadfac2e59ae786f3c40b69cf5 Mon Sep 17 00:00:00 2001 From: Cameron Ezell Date: Thu, 20 Feb 2020 11:45:39 -0800 Subject: [PATCH] Get rid of YAML warning --- skew/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skew/config.py b/skew/config.py index 28aec81..ec72792 100644 --- a/skew/config.py +++ b/skew/config.py @@ -34,5 +34,5 @@ def get_config(): if not os.path.exists(path): raise ConfigNotFoundError('Unable to find skew config file') with open(path) as config_file: - _config = yaml.safe_load(config_file) + _config = yaml.load(config_file, Loader=yaml.FullLoader) return _config