mirror of
https://github.com/home-assistant/core.git
synced 2025-08-11 16:45:19 +02:00
Avoid TypeError for state (#4897)
This commit is contained in:
committed by
Paulus Schoutsen
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):
|
||||
|
Reference in New Issue
Block a user