From 67cf7c26da2b0b7a0dffc1d397cd1396bb6da29a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Thu, 24 Oct 2019 23:25:47 +0200 Subject: [PATCH] Removes unwanted tradfri battery sensor (#28181) --- homeassistant/components/tradfri/sensor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/tradfri/sensor.py b/homeassistant/components/tradfri/sensor.py index 68a2c10291b..cf797f34e3b 100644 --- a/homeassistant/components/tradfri/sensor.py +++ b/homeassistant/components/tradfri/sensor.py @@ -19,6 +19,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities): if not dev.has_light_control and not dev.has_socket_control and not dev.has_blind_control + and not dev.has_signal_repeater_control ) if devices: async_add_entities(TradfriSensor(device, api, gateway_id) for device in devices)