Skip to content

Commit

Permalink
Response: cast normalization_frequency to Frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
megies committed Jul 11, 2016
1 parent 1b75744 commit 75cd2b9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions obspy/core/inventory/response.py
Expand Up @@ -276,6 +276,14 @@ def poles(self, value):
value[i] = ComplexWithUncertainties(x)
self._poles = value

@property
def normalization_frequency(self):
return self._normalization_frequency

@normalization_frequency.setter
def normalization_frequency(self, value):
self._normalization_frequency = Frequency(value)

@property
def pz_transfer_function_type(self):
return self._pz_transfer_function_type
Expand Down

0 comments on commit 75cd2b9

Please sign in to comment.