bugfix: private methods name corrected;
set default values instead of 'None'
This commit is contained in:
parent
bead7a24c3
commit
8df11078b4
@ -134,9 +134,9 @@ class AutoPickParameter(object):
|
||||
|
||||
class FilterOptions(object):
|
||||
|
||||
def __init__(self, filtertype=None, freq=None, order=None):
|
||||
def __init__(self, filtertype='bandpass', freq=[2., 5.], order=3):
|
||||
self.__filterInformation = {}
|
||||
self._setfilterType(filtertype)
|
||||
self._setFilterType(filtertype)
|
||||
self._setFreq(freq)
|
||||
self._setOrder(order)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user