1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-25 14:42:21 +01:00

refactor: remove unnecessary noqa comment in DynamicLamp output module

This commit is contained in:
Oliver Kleinecke
2025-02-15 15:44:32 +01:00
parent fffdcee6dd
commit 7dcb0eba95

View File

@@ -1,7 +1,8 @@
import esphome.codegen as cg # noqa: I001 import esphome.codegen as cg
from esphome.components import output from esphome.components import output
import esphome.config_validation as cv import esphome.config_validation as cv
from esphome.const import CONF_CHANNEL, CONF_ID from esphome.const import CONF_CHANNEL, CONF_ID
from .. import CONF_DYNAMIC_LAMP_ID, DynamicLampComponent, dynamic_lamp_ns from .. import CONF_DYNAMIC_LAMP_ID, DynamicLampComponent, dynamic_lamp_ns
DEPENDENCIES = ["dynamic_lamp"] DEPENDENCIES = ["dynamic_lamp"]