Skip to content

Commit

Permalink
refactor: fix variable type
Browse files Browse the repository at this point in the history
  • Loading branch information
anujsinha3 committed Oct 25, 2023
1 parent 5879e7c commit b126be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/noisepy/seis/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class ConfigParameters(BaseModel):
step: float = Field(default=450.0, description="overlapping between each cc_len (sec)")
freqmin: float = Field(default=0.05)
freqmax: float = Field(default=2.0)
freq_norm: str = Field(
freq_norm: FreqNorm = Field(
default=FreqNorm.RMA.value, description="choose between 'rma' for a soft whitenning or 'no' for no whitening"
)
# TODO: change "no"for "None", and add "one_bit"as an option
Expand Down

0 comments on commit b126be6

Please sign in to comment.