diff --git a/homeassistant/components/tibber/sensor.py b/homeassistant/components/tibber/sensor.py index 5043819b823..2c1171147fb 100644 --- a/homeassistant/components/tibber/sensor.py +++ b/homeassistant/components/tibber/sensor.py @@ -17,7 +17,6 @@ from .const import DOMAIN as TIBBER_DOMAIN, MANUFACTURER _LOGGER = logging.getLogger(__name__) ICON = "mdi:currency-usd" -ICON_RT = "mdi:power-plug" SCAN_INTERVAL = timedelta(minutes=1) MIN_TIME_BETWEEN_UPDATES = timedelta(minutes=5) PARALLEL_UPDATES = 0 @@ -222,11 +221,6 @@ class TibberSensorRT(TibberSensor): """Return the polling state.""" return False - @property - def icon(self): - """Return the icon to use in the frontend.""" - return ICON_RT - @property def unit_of_measurement(self): """Return the unit of measurement of this entity."""