Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Nov 11, 2023
1 parent 198d54f commit 49ea444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vskernels/kernels/placebo.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_params_args(
lut_entries=self.lut_entries, trc=curve.value_libplacebo
)

def _kernel_size(self, taps: float | None = None, b: int | None = None, c: int | None = None) -> int
def _kernel_size(self, taps: float | None = None, b: int | None = None, c: int | None = None) -> int:
if taps:
return ceil(self.taps)

Expand Down
2 changes: 1 addition & 1 deletion vskernels/kernels/various.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from math import ceil, log, sqrt
from math import log, sqrt
from typing import Any

from vstools import CustomValueError, to_singleton
Expand Down

0 comments on commit 49ea444

Please sign in to comment.