mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
rework for flake8 errors done
This commit is contained in:
parent
538f8545f7
commit
a8c2cc4c33
@ -30,6 +30,8 @@ DEFAULT_COMMAND_RGB = "homeassistant/light/rgb/set"
|
|||||||
DEPENDENCIES = ['mqtt']
|
DEPENDENCIES = ['mqtt']
|
||||||
|
|
||||||
# pylint: disable=unused-argument
|
# pylint: disable=unused-argument
|
||||||
|
|
||||||
|
|
||||||
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
||||||
""" Add MQTT Light. """
|
""" Add MQTT Light. """
|
||||||
|
|
||||||
@ -52,10 +54,12 @@ def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
|||||||
config.get('payload_off', DEFAULT_PAYLOAD_OFF),
|
config.get('payload_off', DEFAULT_PAYLOAD_OFF),
|
||||||
config.get('brightness', DEFAULT_BRIGHTNESS))])
|
config.get('brightness', DEFAULT_BRIGHTNESS))])
|
||||||
|
|
||||||
|
|
||||||
class MqttLight(Light):
|
class MqttLight(Light):
|
||||||
""" Provides a demo switch. """
|
""" Provides a demo switch. """
|
||||||
|
|
||||||
# pylint: disable=too-many-instance-attributes,too-many-arguments,too-many-locals,bad-builtin
|
# pylint: disable=too-many-instance-attributes
|
||||||
|
# pylint: disable=too-many-arguments,too-many-locals,bad-builtin
|
||||||
# Eight is reasonable in this case.
|
# Eight is reasonable in this case.
|
||||||
|
|
||||||
def __init__(self, hass, name,
|
def __init__(self, hass, name,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user