From c8a52d45668eb559d215b59d2308e379bb6e6b70 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 13 Jan 2020 14:22:06 +0100 Subject: [PATCH] Remove hidden property from egardia integration (#30728) --- homeassistant/components/egardia/binary_sensor.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/homeassistant/components/egardia/binary_sensor.py b/homeassistant/components/egardia/binary_sensor.py index 157e4f1fe8c..4f02d6fdde0 100644 --- a/homeassistant/components/egardia/binary_sensor.py +++ b/homeassistant/components/egardia/binary_sensor.py @@ -64,12 +64,6 @@ class EgardiaBinarySensor(BinarySensorDevice): """Whether the device is switched on.""" return self._state == STATE_ON - @property - def hidden(self): - """Whether the device is hidden by default.""" - # these type of sensors are probably mainly used for automations - return True - @property def device_class(self): """Return the device class."""