Skip to content

Commit

Permalink
Remove openexchangerates sensor rounding (#103972)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare committed Nov 14, 2023
1 parent be8507f commit 9facdc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/openexchangerates/sensor.py
Expand Up @@ -64,4 +64,4 @@ def __init__(
@property
def native_value(self) -> float:
"""Return the state of the sensor."""
return round(self.coordinator.data.rates[self._quote], 4)
return self.coordinator.data.rates[self._quote]

0 comments on commit 9facdc2

Please sign in to comment.