Skip to content

Commit

Permalink
Merge branch 'master' into custom-kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Aug 3, 2024
2 parents 09fc77d + 44cc41a commit 9df18f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions vskernels/kernels/placebo.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
from typing import Any, Callable

from stgpytools import inject_kwargs_params
from vstools import Transfer, TransferT, core, fallback, inject_self, vs
from vstools import core, fallback, inject_self, vs

from ..types import Center, LeftShift, Slope, TopShift
from ..types import LeftShift, TopShift
from .complex import LinearScaler

__all__ = [
Expand Down
4 changes: 1 addition & 3 deletions vskernels/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,7 @@ class excluded_kernels(list[type]):
def __init__(self) -> None:
super().__init__(abstract_kernels)

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

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

0 comments on commit 9df18f0

Please sign in to comment.