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

[tm1638] Fix linting and formatting issues (#7443)

This commit is contained in:
Jesse Hills
2024-09-13 16:15:00 +12:00
committed by GitHub
parent 0df44b5df1
commit 08c0715a30
4 changed files with 14 additions and 11 deletions

View File

@@ -1,8 +1,9 @@
import esphome.codegen as cg
import esphome.config_validation as cv
from esphome.components import binary_sensor
import esphome.config_validation as cv
from esphome.const import CONF_KEY
from ..display import tm1638_ns, TM1638Component, CONF_TM1638_ID
from ..display import CONF_TM1638_ID, TM1638Component, tm1638_ns
TM1638Key = tm1638_ns.class_("TM1638Key", binary_sensor.BinarySensor)