diff --git a/docs/core/entity/light.md b/docs/core/entity/light.md index 279dd692..64a5fcd2 100644 --- a/docs/core/entity/light.md +++ b/docs/core/entity/light.md @@ -145,7 +145,7 @@ BRIGHTNESS_SCALE = (1, 1023) To scale the brightness to the device range: ```python -from homeassistant.util.color import percentage_to_ranged_value +from homeassistant.util.percentage import percentage_to_ranged_value BRIGHTNESS_SCALE = (1, 1023) ...