From 1da5c2c2e1be34a0b27d612c00ff2991a7af9346 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20St=C3=A5hl?= Date: Mon, 5 Oct 2020 19:36:06 +0200 Subject: [PATCH] Fix linting issues --- custom_components/localtuya/light.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/custom_components/localtuya/light.py b/custom_components/localtuya/light.py index c07d88b..ef84098 100644 --- a/custom_components/localtuya/light.py +++ b/custom_components/localtuya/light.py @@ -5,7 +5,6 @@ from functools import partial import voluptuous as vol from homeassistant.const import ( - CONF_ID, CONF_BRIGHTNESS, CONF_COLOR_TEMP, ) @@ -17,7 +16,6 @@ from homeassistant.components.light import ( ATTR_HS_COLOR, SUPPORT_BRIGHTNESS, SUPPORT_COLOR_TEMP, - SUPPORT_COLOR, ) from .common import LocalTuyaEntity, async_setup_entry @@ -26,7 +24,6 @@ _LOGGER = logging.getLogger(__name__) MIN_MIRED = 153 MAX_MIRED = 370 -UPDATE_RETRY_LIMIT = 3 def flow_schema(dps):