From 59b40de97ab6e27609b3827edc5aa341771aafa4 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 5 Mar 2026 14:13:52 -1000 Subject: [PATCH] silence warnings from code we do not control --- esphome/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/__main__.py b/esphome/__main__.py index cb2345bc6cd..16fa32ee96e 100644 --- a/esphome/__main__.py +++ b/esphome/__main__.py @@ -762,7 +762,7 @@ def _find_picotool() -> Path | None: try: idedata = platformio_api.get_idedata(CORE.config) - except Exception: # noqa: BLE001 + except Exception: # noqa: BLE001 # pylint: disable=broad-except return None return get_picotool_path(idedata.cc_path)