diff --git a/homeassistant/components/bbox/sensor.py b/homeassistant/components/bbox/sensor.py index 53a7e8720b1..129803ad1e1 100644 --- a/homeassistant/components/bbox/sensor.py +++ b/homeassistant/components/bbox/sensor.py @@ -134,7 +134,7 @@ class BboxUptimeSensor(SensorEntity): uptime = utcnow() - timedelta( seconds=self.bbox_data.router_infos["device"]["uptime"] ) - self._attr_native_value = uptime.replace(microsecond=0).isoformat() + self._attr_native_value = uptime.replace(microsecond=0) class BboxSensor(SensorEntity):