mirror of
https://github.com/home-assistant/core.git
synced 2026-09-03 10:05:58 -05:00
round $ to 2 decimals (#4786)
This commit is contained in:
committed by
Fabian Affolter
parent
98fe50d5ad
commit
82ad8b0a8f
@@ -77,7 +77,7 @@ class CoinMarketCapSensor(Entity):
|
||||
@property
|
||||
def state(self):
|
||||
"""Return the state of the sensor."""
|
||||
return self._ticker.get('price_usd')
|
||||
return round(self._ticker.get('price_usd'), 2)
|
||||
|
||||
@property
|
||||
def unit_of_measurement(self):
|
||||
|
||||
Reference in New Issue
Block a user