silence warnings from code we do not control

This commit is contained in:
J. Nick Koston
2026-03-05 14:13:52 -10:00
parent aba845691f
commit 59b40de97a
+1 -1
View File
@@ -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)