Skip to content
Snippets Groups Projects
Commit 3f615f77 authored by Patrick Godwin's avatar Patrick Godwin Committed by Kipp Cannon
Browse files

fxtools/utils.py: update doctest in TimeseriesFeatureQueue to reflect new additions

parent b4856454
No related branches found
No related tags found
No related merge requests found
......@@ -324,7 +324,7 @@ class TimeseriesFeatureQueue(object):
>>> # create the queue
>>> columns = ['trigger_time', 'snr']
>>> channels = ['channel1']
>>> queue = TimeseriesFeatureQueue(channels, columns, sample_rate=1)
>>> queue = TimeseriesFeatureQueue(channels, columns, sample_rate=1, buffer_size=1)
>>> # add features
>>> queue.append(123450, 'channel1', {'trigger_time': 123450.3, 'snr': 3.0})
>>> queue.append(123451, 'channel1', {'trigger_time': 123451.7, 'snr': 6.5})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment