From 4ece928c0a59926a724d9550e2619e474852ef32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Hjelseth=20H=C3=B8yer?= Date: Sat, 10 Oct 2020 17:29:45 +0200 Subject: [PATCH] Remove icon for Tibber sensor (#41604) --- homeassistant/components/tibber/sensor.py | 6 ------ 1 file changed, 6 deletions(-) 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."""