Skip to content

Commit

Permalink
RFDEV.BUG: fix property def
Browse files Browse the repository at this point in the history
  • Loading branch information
murilobalves committed Oct 23, 2024
1 parent 0635b0c commit 4641573
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion siriuspy/siriuspy/devices/rf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 4641573

Please sign in to comment.