diff --git a/debye_bec/devices/pilatus/pilatus.py b/debye_bec/devices/pilatus/pilatus.py index 84236c0..0e18076 100644 --- a/debye_bec/devices/pilatus/pilatus.py +++ b/debye_bec/devices/pilatus/pilatus.py @@ -178,9 +178,9 @@ class Pilatus(PSIDeviceBase, ADBase): ) self._poll_thread_kill_event = threading.Event() self._poll_rate = 1 # Poll rate in Hz - # self._live_mode_thread = threading.Thread( - # target=self._live_mode_loop, daemon=True, name=f"{self.name}_live_mode_thread" - # ) + self._live_mode_thread = threading.Thread( + target=self._live_mode_loop, daemon=True, name=f"{self.name}_live_mode_thread" + ) # self._live_mode_kill_event = threading.Event() # self._live_mode_run_event = threading.Event() # self._live_mode_stopped_event = threading.Event()