1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-26 15:12:21 +01:00

fix: update dependencies in DynamicLampComponent to include time component

This commit is contained in:
Oliver Kleinecke
2025-02-18 12:31:13 +01:00
parent 085532868b
commit df984d67fd

View File

@@ -2,9 +2,9 @@ import esphome.codegen as cg
from esphome.components import i2c, output
from esphome.components.time import RealTimeClock
import esphome.config_validation as cv
from esphome.const import CONF_ID
from esphome.const import CONF_ID,
DEPENDENCIES = ["i2c", "rtc", "fram", "output"]
DEPENDENCIES = ["i2c", "fram", "output", "time"]
CODEOWNERS = ["@p1ngb4ck"]
MULTI_CONF = False