Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
masaccio committed Jan 4, 2024
1 parent 7e5140c commit a0320c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/kingspan_watchman_sensit/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class CurrentUsage(SENSiTEntity, SensorEntity):
def native_value(self):
"""Return the usage in the last day in litres"""
current_usage = self.coordinator.data[self.idx].usage_rate
_LOGGER.debug("Current oil usage %d days", current_usage)
_LOGGER.debug("Current oil usage %d litres/day", current_usage)
return Decimal(f"{current_usage:.1f}")


Expand Down

0 comments on commit a0320c2

Please sign in to comment.