From 58cf3d49f3bd1eb2ff87d52848c92f769d2c45e6 Mon Sep 17 00:00:00 2001 From: Brian Rogers Date: Wed, 4 Sep 2024 11:54:17 -0400 Subject: [PATCH] Update custom_components/wyzeapi/siren.py Reword comment to show only V1 Campan not having a siren Signed-off-by: Brian Rogers --- custom_components/wyzeapi/siren.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/wyzeapi/siren.py b/custom_components/wyzeapi/siren.py index 30597cac..200daa83 100644 --- a/custom_components/wyzeapi/siren.py +++ b/custom_components/wyzeapi/siren.py @@ -40,7 +40,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, camera_service = await client.camera_service sirens = [] for camera in await camera_service.get_cameras(): - # The campan (v1 and 2), v2 camera, and video doorbell pro don't have sirens + # The campan v1, v2 camera, and video doorbell pro don't have sirens if camera.product_model not in ["WYZECP1_JEF", "WYZEC1-JZ", "GW_BE1"]: sirens.append(WyzeCameraSiren(camera, camera_service))