Update patch_put.py
Run CI Tests / test (push) Successful in 2m12s

This commit is contained in:
2025-08-13 13:51:20 +02:00
parent 7c2f471c47
commit 39a97e6015
+2 -1
View File
@@ -1,7 +1,7 @@
# ioc_put_patch.py
import time
import epics
'''
_orig_put = epics.PV.put
def _patched_put(self, value, *args, **kwargs):
@@ -12,3 +12,4 @@ def _patched_put(self, value, *args, **kwargs):
# Patch global de epics.PV.put
epics.PV.put = _patched_put
'''