correct for deprecated condition usage
This commit is contained in:
parent
8b4eed3974
commit
55810b9926
@ -174,7 +174,7 @@ def findComboBoxIndex(combo_box, val):
|
|||||||
:type val: basestring
|
:type val: basestring
|
||||||
:return: index value of item with name val or 0
|
:return: index value of item with name val or 0
|
||||||
"""
|
"""
|
||||||
return combo_box.findText(val) if combo_box.findText(val) is not -1 else 0
|
return combo_box.findText(val) if combo_box.findText(val) != -1 else 0
|
||||||
|
|
||||||
|
|
||||||
def find_in_list(list, str):
|
def find_in_list(list, str):
|
||||||
@ -795,7 +795,7 @@ def scaleWFData(data, factor=None, components='all'):
|
|||||||
:return: scaled waveform data
|
:return: scaled waveform data
|
||||||
:rtype: `~obspy.core.stream.Stream` object
|
:rtype: `~obspy.core.stream.Stream` object
|
||||||
"""
|
"""
|
||||||
if components is not 'all':
|
if components != 'all':
|
||||||
for comp in components:
|
for comp in components:
|
||||||
if factor is None:
|
if factor is None:
|
||||||
max_val = np.max(np.abs(data.select(component=comp)[0].data))
|
max_val = np.max(np.abs(data.select(component=comp)[0].data))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user