removed pycache

This commit is contained in:
Erik Frojdh
2019-03-15 17:59:36 +01:00
parent 3356c2d3f6
commit c0d5303b70
38 changed files with 153 additions and 86 deletions

View File

@ -1069,7 +1069,7 @@ class Detector:
@property
@error_handling
def rx_tcpport(self):
return [self._api.getRxTcpport(i) for i in range(self.n_modules)]
return self._api.getReceiverPort()
@rx_tcpport.setter
@error_handling
@ -1079,7 +1079,7 @@ class Detector:
'detectors: {}'.format(len(ports), len(self)))
else:
for i, p in enumerate(ports):
self._api.setRxTcpport(i, p)
self._api.setReceiverPort(i, p)
@property
@error_handling