diff --git a/homeassistant/components/light/tellstick.py b/homeassistant/components/light/tellstick.py index 05ba334d26c..19ce1a06d4a 100644 --- a/homeassistant/components/light/tellstick.py +++ b/homeassistant/components/light/tellstick.py @@ -37,7 +37,6 @@ def setup_platform(hass, config, add_devices_callback, discovery_info=None): if switch.methods(tellcore_constants.TELLSTICK_DIM): lights.append(TellstickLight(switch)) - # pylint: disable=unused-argument def _device_event_callback(id_, method, data, cid): """ Called from the TelldusCore library to update one device """ for light_device in lights: diff --git a/homeassistant/components/switch/tellstick.py b/homeassistant/components/switch/tellstick.py index 42ce7af9926..96b10a0a977 100644 --- a/homeassistant/components/switch/tellstick.py +++ b/homeassistant/components/switch/tellstick.py @@ -48,7 +48,6 @@ def setup_platform(hass, config, add_devices_callback, discovery_info=None): switches.append( TellstickSwitchDevice(switch, signal_repetitions)) - # pylint: disable=unused-argument def _device_event_callback(id_, method, data, cid): """ Called from the TelldusCore library to update one device """ for switch_device in switches: