diff --git a/devices/devices/sdp/sst.py b/devices/devices/sdp/sst.py index 2dc32c64a6fae3688d4ce78970490dafe0c618fd..1a62a4edcf28c84f7be865d38f7d5312417b497e 100644 --- a/devices/devices/sdp/sst.py +++ b/devices/devices/sdp/sst.py @@ -26,7 +26,7 @@ from tango import AttrWriteType from clients.attribute_wrapper import attribute_wrapper from clients.opcua_client import OPCUAConnection -from clients.StatisticsClient import StatisticsClient +from clients.statistics_client import StatisticsClient from devices.hardware_device import hardware_device diff --git a/devices/devices/sdp/statistics.py b/devices/devices/sdp/statistics.py index 2a9ddb9ec91e8f3bd55ef2d2d2fed50e1b637c9f..5d10aae8b866acc0b30598856cb63b1ecc6d233a 100644 --- a/devices/devices/sdp/statistics.py +++ b/devices/devices/sdp/statistics.py @@ -120,7 +120,7 @@ class Statistics(hardware_device, metaclass=ABCMeta): """ user code here. is called when the sate is set to INIT """ """Initialises the attributes and properties of the statistics device.""" - self.statistics_client = StasticsClient(self.STATISTICS_COLLECTOR_CLASS, "0.0.0.0", self.Statistics_Client_Port, self.Fault, self) + self.statistics_client = StatisticsClient(self.STATISTICS_COLLECTOR_CLASS, "0.0.0.0", self.Statistics_Client_Port, self.Fault, self) self.OPCUA_client = OPCUAConnection("opc.tcp://{}:{}/".format(self.OPC_Server_Name, self.OPC_Server_Port), "http://lofar.eu", self.OPC_Time_Out, self.Fault, self)