From 46415731feb87c0d6c19cad158a2a35bf837fa00 Mon Sep 17 00:00:00 2001 From: "Murilo B. Alves" Date: Wed, 23 Oct 2024 14:59:30 -0300 Subject: [PATCH] RFDEV.BUG: fix property def --- siriuspy/siriuspy/devices/rf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/siriuspy/siriuspy/devices/rf.py b/siriuspy/siriuspy/devices/rf.py index f3438ff64..90138c20d 100644 --- a/siriuspy/siriuspy/devices/rf.py +++ b/siriuspy/siriuspy/devices/rf.py @@ -747,11 +747,12 @@ def phase_shift_cav_sp(self): """.""" return self['PhShCav-SP'] + @property def phase_shift_cav(self): """.""" return self['PhShCav-RB'] - @phase_shift_cav + @phase_shift_cav.setter def phase_shift_cav(self, value): self['PhShCav-SP'] = self._wrap_phase(value)