Skip to content

Commit

Permalink
Fix FunctionUtil call
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Jun 24, 2024
1 parent 5a74168 commit 5f37b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vsadjust/borders.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __call__(
top: int | Sequence[int] = 0, bottom: int | Sequence[int] = 0,
planes: PlanesT = None, **kwargs: KwargsT
) -> vs.VideoNode:
func = FunctionUtil(clip, 'bore', planes, vs.YUV, 32)
func = FunctionUtil(clip, self.__class__, planes, vs.YUV, 32)

values = list(map(func.norm_seq, (left, right, top, bottom)))

Expand Down

0 comments on commit 5f37b65

Please sign in to comment.