From 35ccad7904afcdc961793edb5afae52442530d41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Milanovi=C4=87?= Date: Wed, 25 Aug 2021 23:57:07 +1000 Subject: [PATCH] Ignore unsupported MeasureType-s from Withings (#55205) --- homeassistant/components/withings/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/withings/common.py b/homeassistant/components/withings/common.py index 646243e309d..b70b8b5ca1a 100644 --- a/homeassistant/components/withings/common.py +++ b/homeassistant/components/withings/common.py @@ -792,6 +792,7 @@ class DataManager: ) for group in groups for measure in group.measures + if measure.type in WITHINGS_MEASURE_TYPE_MAP } async def async_get_sleep_summary(self) -> dict[MeasureType, Any]: