diff --git a/geomagio/Controller.py b/geomagio/Controller.py index 620f8307e905b18f44865397e03cecbb0584d612..801958764806051298894d3f93ed9437fdc26821 100644 --- a/geomagio/Controller.py +++ b/geomagio/Controller.py @@ -240,6 +240,9 @@ class Controller(object): rename_input_channel: list of input channel renames rename_output_channel: list of output channel renames """ + # ensure realtime is a valid value: + if realtime <= 0: + realtime = False algorithm = self._algorithm input_channels = input_channels or algorithm.get_input_channels() output_channels = output_channels or algorithm.get_output_channels()