Fix linting issues

This commit is contained in:
Pierre Ståhl
2020-10-05 19:36:06 +02:00
committed by rospogrigio
parent 51a92da6b3
commit 1da5c2c2e1

View File

@@ -5,7 +5,6 @@ from functools import partial
import voluptuous as vol import voluptuous as vol
from homeassistant.const import ( from homeassistant.const import (
CONF_ID,
CONF_BRIGHTNESS, CONF_BRIGHTNESS,
CONF_COLOR_TEMP, CONF_COLOR_TEMP,
) )
@@ -17,7 +16,6 @@ from homeassistant.components.light import (
ATTR_HS_COLOR, ATTR_HS_COLOR,
SUPPORT_BRIGHTNESS, SUPPORT_BRIGHTNESS,
SUPPORT_COLOR_TEMP, SUPPORT_COLOR_TEMP,
SUPPORT_COLOR,
) )
from .common import LocalTuyaEntity, async_setup_entry from .common import LocalTuyaEntity, async_setup_entry
@@ -26,7 +24,6 @@ _LOGGER = logging.getLogger(__name__)
MIN_MIRED = 153 MIN_MIRED = 153
MAX_MIRED = 370 MAX_MIRED = 370
UPDATE_RETRY_LIMIT = 3
def flow_schema(dps): def flow_schema(dps):