Skip to content

Commit

Permalink
Remove MemeKernel from excluded_kernels too
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Aug 3, 2024
1 parent 3bdf240 commit 44cc41a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions vskernels/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
Bicubic, BicubicAuto, Catrom, ComplexKernel, Descaler, FmtConv, Impulse, Kernel, KernelT, LinearDescaler, Placebo,
Point, Resampler, ResamplerT, Scaler, ZimgComplexKernel, ZimgDescaler
)
from .kernels.bicubic import MemeKernel
from .types import Center, LeftShift, Slope, TopShift

__all__ = [
Expand Down Expand Up @@ -121,9 +120,7 @@ class excluded_kernels(list[type]):
def __init__(self) -> None:
super().__init__(abstract_kernels)

self.exclude_sub = [
NoShiftBase, NoScaleBase, BicubicAuto, MemeKernel
]
self.exclude_sub = [NoShiftBase, NoScaleBase, BicubicAuto]

def __contains__(self, key: object) -> bool:
if not isinstance(key, type):
Expand Down

0 comments on commit 44cc41a

Please sign in to comment.