From 52f49fc32d4c91c19df86ee158817f561846567c Mon Sep 17 00:00:00 2001 From: Richard Kroegel <42204099+rikroe@users.noreply.github.com> Date: Sun, 18 Jun 2023 09:19:31 +0200 Subject: [PATCH] bmw_conected_drive: Allow WASHING_FLUID in condition based service (#94762) Allow WASHING_FLUID --- homeassistant/components/bmw_connected_drive/binary_sensor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/bmw_connected_drive/binary_sensor.py b/homeassistant/components/bmw_connected_drive/binary_sensor.py index 640f4e3653b..6fd5f3e7693 100644 --- a/homeassistant/components/bmw_connected_drive/binary_sensor.py +++ b/homeassistant/components/bmw_connected_drive/binary_sensor.py @@ -37,6 +37,7 @@ ALLOWED_CONDITION_BASED_SERVICE_KEYS = { "TIRE_WEAR_REAR", "VEHICLE_CHECK", "VEHICLE_TUV", + "WASHING_FLUID", } LOGGED_CONDITION_BASED_SERVICE_WARNINGS: set[str] = set()