From 8bda5c1240ac3c0d7531a94d8de305f51ce7b12a Mon Sep 17 00:00:00 2001 From: Setsugennoao <41454651+Setsugennoao@users.noreply.github.com> Date: Fri, 20 Oct 2023 19:39:15 +0200 Subject: [PATCH] Make BicubicAuto a ComplexKernel --- vskernels/kernels/bicubic.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vskernels/kernels/bicubic.py b/vskernels/kernels/bicubic.py index a66b8a5..1599987 100644 --- a/vskernels/kernels/bicubic.py +++ b/vskernels/kernels/bicubic.py @@ -5,7 +5,6 @@ from vstools import CustomValueError, core, vs -from .abstract import Kernel from .complex import ComplexKernel __all__ = [ @@ -200,7 +199,7 @@ def __init__(self, **kwargs: Any) -> None: super().__init__(b=-0.6, c=0.3, **kwargs) -class BicubicAuto(Kernel): +class BicubicAuto(ComplexKernel): """ Kernel that follows the rule of: b + 2c = target for upsizing