Remove openexchangerates sensor rounding (#103972)
parent
be8507f870
commit
9facdc2dbb
homeassistant/components/openexchangerates
|
@ -64,4 +64,4 @@ class OpenexchangeratesSensor(
|
|||
@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]
|
||||
|
|
Loading…
Reference in New Issue