mirror of
https://github.com/home-assistant/core.git
synced 2025-07-09 06:17:07 +00:00
Avoid TypeError for state (#4897)
This commit is contained in:
parent
02517ae5ec
commit
7748867732
@ -77,7 +77,7 @@ class CoinMarketCapSensor(Entity):
|
||||
@property
|
||||
def state(self):
|
||||
"""Return the state of the sensor."""
|
||||
return round(self._ticker.get('price_usd'), 2)
|
||||
return round(float(self._ticker.get('price_usd')), 2)
|
||||
|
||||
@property
|
||||
def unit_of_measurement(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user