From 411f60f76084b24d20eb3e4205c8fda47f8680bc Mon Sep 17 00:00:00 2001 From: tligui_y Date: Fri, 8 Aug 2025 17:15:45 +0200 Subject: [PATCH] Update slic/utils/hastyepics.py --- slic/utils/hastyepics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slic/utils/hastyepics.py b/slic/utils/hastyepics.py index 544735a79..dfd2285d9 100644 --- a/slic/utils/hastyepics.py +++ b/slic/utils/hastyepics.py @@ -9,9 +9,9 @@ from epics.motor import MotorException ################################################################ en +++++++++++ class HastyPV(_PV): def put(self, value, *args, **kwargs): - kwargs.setdefault("wait", True) # force wait=True par défaut + kwargs.setdefault("wait", True) result = super().put(value, *args, **kwargs) - time.sleep(0.1) # petit délai post-write + time.sleep(0.1) return result ###################################################################