mirror of
https://github.com/home-assistant/core.git
synced 2025-08-16 02:51:40 +02:00
Handle exception in ViCare integration (#111128)
This commit is contained in:
committed by
Paulus Schoutsen
parent
bb6f8b9d57
commit
9926296d35
@@ -205,7 +205,8 @@ class ViCareClimate(ViCareEntity, ClimateEntity):
|
||||
"heating_curve_shift"
|
||||
] = self._circuit.getHeatingCurveShift()
|
||||
|
||||
self._attributes["vicare_modes"] = self._circuit.getModes()
|
||||
with suppress(PyViCareNotSupportedFeatureError):
|
||||
self._attributes["vicare_modes"] = self._circuit.getModes()
|
||||
|
||||
self._current_action = False
|
||||
# Update the specific device attributes
|
||||
|
Reference in New Issue
Block a user