Skip to content

Commit

Permalink
diff: Remove multiple statements on one line in overloads
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Sep 20, 2024
1 parent edc2c0c commit 3cd82a4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lvsfunc/comparison.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,8 @@ def diff(
msg: str = ...,
plane: int = ...,
**namedclips: vs.VideoNode,
) -> tuple[vs.VideoNode, list[tuple[int, int]]]: ...
) -> tuple[vs.VideoNode, list[tuple[int, int]]]:
...


@overload
Expand All @@ -589,7 +590,8 @@ def diff(
msg: str = ...,
plane: int = ...,
**namedclips: vs.VideoNode,
) -> vs.VideoNode: ...
) -> vs.VideoNode:
...


def diff(
Expand Down

0 comments on commit 3cd82a4

Please sign in to comment.