From 3cfaae120234b659af51b6a1deec3353bfd83ebc Mon Sep 17 00:00:00 2001 From: Daron Chabot Date: Mon, 2 Mar 2026 09:36:38 -0800 Subject: [PATCH] FIX: ca timeout constraint --- leep/ca.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leep/ca.py b/leep/ca.py index 02deb0a..1c54333 100644 --- a/leep/ca.py +++ b/leep/ca.py @@ -45,7 +45,7 @@ class CADevice(DeviceBase): def __init__(self, addr, timeout=5.0, **kws): DeviceBase.__init__(self, **kws) self.timeout = timeout - assert self.timeout > 0.1, self.timeout # must be reasonable + assert self.timeout >= 0.1, self.timeout # must be reasonable self.prefix = str(addr) # PV prefix # fetch mapping from register name to info dict