Skip to content

Commit fa1914c

Browse files
committed
change docstring
1 parent 4bb0180 commit fa1914c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/packages/isce3/splitspectrum/splitspectrum.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,8 +428,8 @@ def construct_range_bandpass_kaiser_cosine(self,
428428
subbandwidth = np.abs(fH - fL)
429429
fft_size = len(frequency_range)
430430

431-
assert fH < np.max(frequency_range), 'High freqeuncy is expected '
432-
assert fL > np.min(frequency_range), 'Low freqeuncy is lower than observation'
431+
assert fH < np.max(frequency_range), 'High freqeuncy is out of freqeuncy bins'
432+
assert fL > np.min(frequency_range), 'Low freqeuncy is out of freqeuncy bins'
433433

434434
# sampling frequency is 1.2 times wider than bandwith
435435
sampling_bandwidth_ratio = 1.2

0 commit comments

Comments
 (0)