Skip to content

Commit

Permalink
🎄 fix mypy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdd committed Dec 24, 2023
1 parent b588a10 commit da1d0f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsdownsample/downsampling_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class AbstractRustDownsampler(AbstractDownsampler, ABC):
"""RustDownsampler interface-class, subclassed by concrete downsamplers."""

def __init__(self):
super().__init__(_rust_dtypes, _y_rust_dtypes) # same for x and y
super().__init__(True, _rust_dtypes, _y_rust_dtypes) # same for x and y

@property
def rust_mod(self) -> ModuleType:
Expand Down

0 comments on commit da1d0f7

Please sign in to comment.