Update slic/utils/pv.py
Run CI Tests / test (push) Successful in 1m6s

This commit is contained in:
2025-08-08 01:42:13 +02:00
parent c55bdaf5c4
commit 0ed9260294
+6 -2
View File
@@ -12,9 +12,13 @@ class PV(epics.PV):
###### AVANNNNNT
kwargs["wait"] = True # enforce wait to show progress
kwargs["timeout"] = 2.0 # Explicit timeout
if not show_progress:
return super().put(value, *args, **kwargs)
# Simple put with verification
result = super().put(value, *args, **kwargs)
time.sleep(0.1) # Small safety delay
return result
start = self.get()
stop = value