From b5f2ff854c1da47f1e5f54c5015bcbb6fad43658 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 2 Jan 2023 15:32:48 -0500 Subject: [PATCH] Drop meaning the clearing rate, use per step count --- piker/fsp/_volume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piker/fsp/_volume.py b/piker/fsp/_volume.py index b998c67b..06d0be91 100644 --- a/piker/fsp/_volume.py +++ b/piker/fsp/_volume.py @@ -234,7 +234,7 @@ async def flow_rates( # FSPs, user input, and possibly any general event stream in # real-time. Hint: ideally implemented with caching until mutated # ;) - period: 'Param[int]' = 6, # noqa + period: 'Param[int]' = 1, # noqa # TODO: support other means by providing a map # to weights `partial()`-ed with `wma()`?