Skip to content

Commit

Permalink
Fix flake8 complaint
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Nov 18, 2023
1 parent 00311a2 commit a49a76d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vskernels/kernels/complex.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ class _BaseLinearOperation:
def _linear_op(op_name: str) -> Any:
@inject_kwargs_params
def func(
self: _BaseLinearOperation, clip: vs.VideoNode, width: int, height: int, shift: tuple[float, float] = (0, 0),
*, linear: bool = False, sigmoid: bool | tuple[float, float] = False, **kwargs: Any
self: _BaseLinearOperation, clip: vs.VideoNode, width: int, height: int,
shift: tuple[float, float] = (0, 0), *,
linear: bool = False, sigmoid: bool | tuple[float, float] = False, **kwargs: Any
) -> vs.VideoNode:
from ..util import LinearLight

Expand Down

0 comments on commit a49a76d

Please sign in to comment.