diff --git a/circuitmatter/device_types/sensor/temperature_sensor.py b/circuitmatter/device_types/sensor/temperature_sensor.py index ad18a40..ac89e90 100644 --- a/circuitmatter/device_types/sensor/temperature_sensor.py +++ b/circuitmatter/device_types/sensor/temperature_sensor.py @@ -19,7 +19,4 @@ def __init__(self, name): self._temp = TemperatureMeasurement() self.servers.append(self._temp) - - self._temp.MeasuredValue = random.randint( - 1500, 2500 - ) # Random temp between 15°C and 25°C + self._temp.MeasuredValue = random.randint(1500, 2500) # Random temp between 15°C and 25°C