From 5c8f7fe52ae74e143afde48cc74a89cb29640a47 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 17 May 2024 14:13:10 +0200 Subject: [PATCH] Fix rc pylint warning for Home Assistant Analytics (#117635) --- homeassistant/components/analytics_insights/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/analytics_insights/config_flow.py b/homeassistant/components/analytics_insights/config_flow.py index 909290b1035..64d1580223e 100644 --- a/homeassistant/components/analytics_insights/config_flow.py +++ b/homeassistant/components/analytics_insights/config_flow.py @@ -82,7 +82,7 @@ class HomeassistantAnalyticsConfigFlow(ConfigFlow, domain=DOMAIN): except HomeassistantAnalyticsConnectionError: LOGGER.exception("Error connecting to Home Assistant analytics") return self.async_abort(reason="cannot_connect") - except Exception: # noqa: BLE001 + except Exception: # pylint: disable=broad-except LOGGER.exception("Unexpected error") return self.async_abort(reason="unknown")