Skip to content

Commit

Permalink
Fix skill issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed May 19, 2023
1 parent 5d19664 commit 4eacd26
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions vsaa/antialiasers/eedi3.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,7 @@ def interpolate(self, clip: vs.VideoNode, double_y: bool, **kwargs: Any) -> vs.V
raise CustomValueError("You can't pass sclip_aa=True when supersampling!", self.__class__)
aa_kwargs.update(sclip=clip)
else:
sclip_args = self._sclip_aa.get_aa_args(
clip, **(dict(mclip=kwargs.get('clip') if 'mclip' in kwargs else {}))
)
sclip_args = self._sclip_aa.get_aa_args(clip, **(dict(mclip=kwargs.get('mclip', None))))

if double_y:
sclip_args |= self._sclip_aa.get_ss_args(clip)
Expand Down

0 comments on commit 4eacd26

Please sign in to comment.