From d6696541420873dd43245fe7560c47ee9336a934 Mon Sep 17 00:00:00 2001 From: plambeto Date: Sun, 8 May 2022 21:16:09 +0300 Subject: [PATCH] Fixed interpolation algorithms list --- video2x/video2x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/video2x/video2x.py b/video2x/video2x.py index a24c063..27a0c7a 100755 --- a/video2x/video2x.py +++ b/video2x/video2x.py @@ -545,7 +545,7 @@ def parse_arguments() -> argparse.Namespace: interpolate.add_argument( "-a", "--algorithm", - choices=UPSCALING_ALGORITHMS, + choices=INTERPOLATION_ALGORITHMS, help="algorithm to use for upscaling", default=INTERPOLATION_ALGORITHMS[0], )