Skip to content

Commit

Permalink
Fix mypy typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobchwastek committed Sep 14, 2023
1 parent d5b7895 commit 5a7f63e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymovements/gaze/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ def smooth(
_check_padding(padding=padding)

if method in {'moving_average', 'exponential_moving_average'}:
pad_kwargs = {'pad_width': 0}
pad_kwargs : dict[str, Any] = {'pad_width': 0.0}
pad_func = _identity

if isinstance(padding, (int, float)):
Expand Down

0 comments on commit 5a7f63e

Please sign in to comment.