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

This commit is contained in:
2025-08-08 20:20:54 +02:00
parent 27895484bf
commit e89ad185bc
+2 -5
View File
@@ -9,17 +9,14 @@ import time
class PV(epics.PV):
def put(self, value, *args, show_progress=False, **kwargs):
###### AVANNNNNT
kwargs["wait"] = True # enforce wait to show progress
#kwargs["timeout"] = 2.0 # Explicit timeout
if not show_progress:
# Simple put with verification
result = super().put(value, *args, **kwargs)
time.sleep(0.1) # Small safety delay
return result
kwargs["wait"] = True
start = self.get()
stop = value