From a4fb6324d4abf26102a6b26d55e37e12c14a415f Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Wed, 10 Apr 2024 15:55:11 +0200 Subject: [PATCH] Remove unused reference --- .github/workflows/validate_python.yml | 1 - components/nspanel_ha_blueprint/__init__.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/validate_python.yml b/.github/workflows/validate_python.yml index 85489ce..15c025d 100644 --- a/.github/workflows/validate_python.yml +++ b/.github/workflows/validate_python.yml @@ -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" ... diff --git a/components/nspanel_ha_blueprint/__init__.py b/components/nspanel_ha_blueprint/__init__.py index 2cb6d09..89670f1 100644 --- a/components/nspanel_ha_blueprint/__init__.py +++ b/components/nspanel_ha_blueprint/__init__.py @@ -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"]