Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SaraPido committed May 8, 2024
1 parent a9a23c5 commit 4989221
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sigpro/aggregations/frequency/band.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@


def band_mean(amplitude_values, frequency_values, min_frequency, max_frequency):
"""Compute the mean values for a specific band.
"""
Compute the mean values for a specific band.
Filter between a high and low band and compute the mean value for this specific band.
Args:
Expand All @@ -31,7 +33,9 @@ def band_mean(amplitude_values, frequency_values, min_frequency, max_frequency):


def band_rms(amplitude_values, frequency_values, min_frequency, max_frequency):
"""Compute the rms values for a specific band.
"""
Compute the rms values for a specific band.
Filter between a high and low band (inclusive) and compute the rms value for this
specific band.
Expand Down

0 comments on commit 4989221

Please sign in to comment.