From a6d5b1cb22610c21cb54bce67f72c76a328b3cf4 Mon Sep 17 00:00:00 2001 From: Sumit Kumar Date: Tue, 9 Dec 2025 19:17:35 +0000 Subject: [PATCH] A bug fixed vy correcting missing paranthesis --- wferrors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wferrors.py b/wferrors.py index 1b323d1..c4955a4 100644 --- a/wferrors.py +++ b/wferrors.py @@ -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']) @@ -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'])