From 9b0955b67e18dc15da2d4d2c4916792180e6214f Mon Sep 17 00:00:00 2001 From: tkdrob Date: Mon, 8 Feb 2021 05:26:57 -0500 Subject: [PATCH] Use core constants for flux (#46201) --- homeassistant/components/flux/switch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/flux/switch.py b/homeassistant/components/flux/switch.py index 4d45f217a59..ab0d296928f 100644 --- a/homeassistant/components/flux/switch.py +++ b/homeassistant/components/flux/switch.py @@ -22,6 +22,7 @@ from homeassistant.components.light import ( from homeassistant.components.switch import DOMAIN, SwitchEntity from homeassistant.const import ( ATTR_ENTITY_ID, + CONF_BRIGHTNESS, CONF_LIGHTS, CONF_MODE, CONF_NAME, @@ -49,7 +50,6 @@ CONF_STOP_TIME = "stop_time" CONF_START_CT = "start_colortemp" CONF_SUNSET_CT = "sunset_colortemp" CONF_STOP_CT = "stop_colortemp" -CONF_BRIGHTNESS = "brightness" CONF_DISABLE_BRIGHTNESS_ADJUST = "disable_brightness_adjust" CONF_INTERVAL = "interval"