1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-06 13:22:19 +01:00

refactor: rename dynamic_monochromatic namespace to dynamic_monochromatic_light for clarity

This commit is contained in:
Oliver Kleinecke
2025-02-15 20:18:31 +01:00
parent 6a3672ba79
commit e232dc17cc

View File

@@ -7,7 +7,7 @@ from .. import CONF_DYNAMIC_LAMP_ID, DynamicLampComponent, dynamic_lamp_ns
DEPENDENCIES = ["dynamic_lamp"]
dynamic_monochromatic_ns = cg.esphome_ns.namespace("dynamic_monochromatic")
dynamic_monochromatic_ns = cg.esphome_ns.namespace("dynamic_monochromatic_light")
DynamicLamp = dynamic_monochromatic_ns.class_(
"DynamicLamp", light.LightOutput, cg.Parented.template(DynamicLampComponent)
)