diff --git a/homeassistant/components/switch/insteon_plm.py b/homeassistant/components/switch/insteon_plm.py index 3083140a954..8dd81dc2d6f 100644 --- a/homeassistant/components/switch/insteon_plm.py +++ b/homeassistant/components/switch/insteon_plm.py @@ -38,7 +38,7 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None): new_entity = InsteonPLMOpenClosedDevice(device, state_key) if new_entity is not None: - async_add_devices(new_entity) + async_add_devices([new_entity]) class InsteonPLMSwitchDevice(SwitchDevice):