Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE authored Mar 14, 2024
1 parent 41a04ee commit 66360c2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions vsdeinterlace/combing.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from typing import TYPE_CHECKING, cast, overload
from typing import cast, overload

from vsexprtools import ExprVars, complexpr_available, norm_expr
from vsrgtools import sbr
Expand Down Expand Up @@ -59,7 +59,10 @@ def fix_telecined_fades( # type: ignore[misc]
Frames that don't contain such fades may be damaged.
"""

warnings.warn('fix_telecined_fades: This function is deprecated and as such it will be removed in the future! Please use "fix_interlaced_fades".')
warnings.warn(
'fix_telecined_fades: This function is deprecated and as such it will be removed in the future! '
'Please use "fix_interlaced_fades".'
)

# Gracefully handle positional arguments that either include or
# exclude tff, hopefully without interfering with keyword arguments.
Expand Down

0 comments on commit 66360c2

Please sign in to comment.