diff --git a/components/nspanel_ha_blueprint/__init__.py b/components/nspanel_ha_blueprint/__init__.py index 4753134..37ac8c2 100644 --- a/components/nspanel_ha_blueprint/__init__.py +++ b/components/nspanel_ha_blueprint/__init__.py @@ -12,7 +12,6 @@ CONFIG_SCHEMA = cv.All( ) @coroutine_with_priority(1.0) - async def to_code(config): cg.add_define("USE_NSPANEL_HA_BLUEPRINT") cg.add_global(nspanel_ha_blueprint_ns.using) diff --git a/components/nspanel_ha_blueprint_upload_tft/__init__.py b/components/nspanel_ha_blueprint_upload_tft/__init__.py index e521bf0..72a8c19 100644 --- a/components/nspanel_ha_blueprint_upload_tft/__init__.py +++ b/components/nspanel_ha_blueprint_upload_tft/__init__.py @@ -5,14 +5,16 @@ from esphome.core import coroutine_with_priority CODEOWNERS = ["@edwardtfn"] -nspanel_ha_blueprint_upload_tft_ns = cg.esphome_ns.namespace('nspanel_ha_blueprint_upload_tft') +nspanel_ha_blueprint_upload_tft_ns = cg.esphome_ns.namespace( + 'nspanel_ha_blueprint_upload_tft' +) CONFIG_SCHEMA = cv.All( cv.Schema({}), ) -@coroutine_with_priority(1.0) +@coroutine_with_priority(1.0) async def to_code(config): cg.add_define("USE_NSPANEL_HA_BLUEPRINT_UPLOAD_TFT") cg.add_global(nspanel_ha_blueprint_upload_tft_ns.using)