Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Aug 23, 2024
1 parent f14b56e commit 9d2fac2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vsdeinterlace/combing.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@


class FixInterlacedFades(CustomEnum):
Average = object()
Darken = object()
Brighten = object()
Average: FixInterlacedFades = object() # type: ignore
Darken: FixInterlacedFades = object() # type: ignore
Brighten: FixInterlacedFades = object() # type: ignore

def __call__(
self, clip: vs.VideoNode, colors: float | list[float] | PlanesT = 0.0,
Expand Down

0 comments on commit 9d2fac2

Please sign in to comment.