python vhighvoltage to highvoltage

This commit is contained in:
2020-07-30 11:52:22 +02:00
parent 98ffe350f3
commit 5b9c7c4105
5 changed files with 11 additions and 11 deletions

View File

@ -508,11 +508,11 @@ class Detector(CppDetectorApi):
self.setSourceUDPMAC2(MacAddr(mac))
@property
def vhighvoltage(self):
def highvoltage(self):
return element_if_equal(self.getHighVoltage())
@vhighvoltage.setter
def vhighvoltage(self, v):
@highvoltage.setter
def highvoltage(self, v):
self.setHighVoltage(v)
@property