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)