From 96c11bc6d7ca21b2eb6372725ab41b2aaa95a0ed Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 13 Jan 2020 05:47:07 +0100 Subject: [PATCH] Unhide SPC binary sensors by default (#30699) --- homeassistant/components/spc/binary_sensor.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/homeassistant/components/spc/binary_sensor.py b/homeassistant/components/spc/binary_sensor.py index 2104f931c0a..b5ff14ce01d 100644 --- a/homeassistant/components/spc/binary_sensor.py +++ b/homeassistant/components/spc/binary_sensor.py @@ -62,15 +62,8 @@ class SpcBinarySensor(BinarySensorDevice): @property def is_on(self): """Whether the device is switched on.""" - return self._zone.input == ZoneInput.OPEN - @property - def hidden(self) -> bool: - """Whether the device is hidden by default.""" - # These type of sensors are probably mainly used for automations - return True - @property def should_poll(self): """No polling needed."""