From 8db040815a4f021af341df1cbc772d0b4e35ffc3 Mon Sep 17 00:00:00 2001 From: Dermot Duffy Date: Tue, 15 Oct 2024 21:05:35 -0700 Subject: [PATCH] Fix lint errors --- custom_components/hass_proxy/__init__.py | 1 - custom_components/hass_proxy/config_flow.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/custom_components/hass_proxy/__init__.py b/custom_components/hass_proxy/__init__.py index b8c623a..5aaf8de 100644 --- a/custom_components/hass_proxy/__init__.py +++ b/custom_components/hass_proxy/__init__.py @@ -39,7 +39,6 @@ async def async_unload_entry( entry: HASSProxyData, ) -> bool: """Handle removal of an entry.""" - LOGGER.info("HASSPROXY Unloading entry %s", entry.entry_id) return await hass.config_entries.async_unload_platforms(entry, PLATFORMS) diff --git a/custom_components/hass_proxy/config_flow.py b/custom_components/hass_proxy/config_flow.py index 19673f7..941ebd5 100644 --- a/custom_components/hass_proxy/config_flow.py +++ b/custom_components/hass_proxy/config_flow.py @@ -1,4 +1,4 @@ -A"""Config flow for HASS Proxy.""" +"""Config flow for HASS Proxy.""" from __future__ import annotations