From d503325a62b2df588813b85d2e824d0b8169fca1 Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Sat, 16 Nov 2019 02:52:33 -0500 Subject: [PATCH] changed YAML load to FullLoader to make it WIndows-compatible --- src/video2x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video2x.py b/src/video2x.py index 1192ff8..a05cb1c 100755 --- a/src/video2x.py +++ b/src/video2x.py @@ -201,7 +201,7 @@ def read_config(config_file: pathlib.Path) -> dict: """ with open(config_file, 'r') as config: - return yaml.load(config, Loader=yaml.CLoader) + return yaml.load(config, Loader=yaml.FullLoader) def absolutify_paths(config):