Skip to content
Snippets Groups Projects
Commit e82b214a authored by Aida Nikkhah Nasab's avatar Aida Nikkhah Nasab
Browse files

refactor: simplify docstring for bandpass filtering method

parent 0ca60d39
No related branches found
No related tags found
No related merge requests found
Pipeline #57854 failed
......@@ -35,7 +35,7 @@ class TemporalAnalyzer:
self._setup_bandpass_filter()
def _apply_filter(self, data: np.ndarray) -> np.ndarray:
"""Zero-phase bandpass filtering"""
"""bandpass filtering"""
return signal.filtfilt(self.b, self.a, data)
def _setup_bandpass_filter(self) -> None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment