Skip to content

Commit

Permalink
Fix code style issues with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Dec 12, 2023
1 parent d8dce0c commit d285696
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rocketpy/mathutils/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -1093,16 +1093,16 @@ def low_pass_filter(self, alpha):
Parameters:
----------
- alpha : float
- alpha : float
Attenuation coefficient, 0 < alpha < 1
For a given dataset, the larger alpha is, the more closely the
filtered function returned will match the function the smaller
alpha is, the smoother the filtered function returned will be
For a given dataset, the larger alpha is, the more closely the
filtered function returned will match the function the smaller
alpha is, the smoother the filtered function returned will be
(but with a phase shift)
Returns:
----------
- filtered_function : Function
- filtered_function : Function
The function with the incoming source filtered
"""
filtered_signal = np.zeros_like(self.source)
Expand Down

0 comments on commit d285696

Please sign in to comment.