Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions wferrors.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def amplitude_phase_modification_fd(**kwds):
)
elif dict_waveform_modification['modification_type'] == 'cubic_spline_nodes':
f_lower = (dict_waveform_modification.get('f_lower_wferror',
default=dict_waveform_modification['f_lower']
default=dict_waveform_modification['f_lower'])
)
f_high_wferror = dict_waveform_modification['f_high_wferror']
n_nodes_wferror = int(dict_waveform_modification['n_nodes_wferror'])
Expand Down Expand Up @@ -242,7 +242,7 @@ def amplitude_phase_modification_both_polarization_fd(**kwds):

elif modification_type == 'cubic_spline_nodes':
f_lower = (dict_waveform_modification.get('f_lower_wferror',
default=dict_waveform_modification['f_lower']
default=dict_waveform_modification['f_lower'])
)
f_high_wferror = dict_waveform_modification['f_high_wferror']
n_nodes_wferror = int(dict_waveform_modification['n_nodes_wferror'])
Expand Down