Skip to content

Commit

Permalink
Change decimation filter default boolean
Browse files Browse the repository at this point in the history
- see issue #185, these were being removed but should not be.
  • Loading branch information
kkappler committed Jan 6, 2024
1 parent 336457a commit 9deb921
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mth5/timeseries/channel_ts.py
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,7 @@ def get_calibrated_units(self):


def remove_instrument_response(self,
include_decimation=True,
include_decimation=False,
include_delay=False,
**kwargs):
"""
Expand Down
2 changes: 1 addition & 1 deletion mth5/timeseries/ts_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def __init__(
self.fig = None
self.nrows = None
self.subplot_dict = {}
self.include_decimation = True
self.include_decimation = False
self.include_delay = False

for key, value in kwargs.items():
Expand Down

0 comments on commit 9deb921

Please sign in to comment.