Remove unused reference

This commit is contained in:
Edward Firmo
2024-04-10 15:55:11 +02:00
parent 89f95899a1
commit a4fb6324d4
2 changed files with 1 additions and 2 deletions

View File

@@ -25,7 +25,6 @@ jobs:
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
ignore: "F401" # To do: remove for v4.4
max-line-length: "200"
path: "components/nspanel_ha_blueprint"
...

View File

@@ -1,7 +1,7 @@
# __init__.py
import esphome.codegen as cg
import esphome.config_validation as cv
from esphome.components.esp32 import add_idf_sdkconfig_option, get_esp32_variant
from esphome.components.esp32 import add_idf_sdkconfig_option
from esphome.core import CORE, coroutine_with_priority
CODEOWNERS = ["@edwardtfn"]