From a3f5458ae3556e7702f67bdb4b09f18cfb58f9e6 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 26 Mar 2026 15:54:54 -1000 Subject: [PATCH] Fix unused services variable in test --- tests/integration/test_legacy_climate_compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_legacy_climate_compat.py b/tests/integration/test_legacy_climate_compat.py index 430778134d..1ea3c2bc4a 100644 --- a/tests/integration/test_legacy_climate_compat.py +++ b/tests/integration/test_legacy_climate_compat.py @@ -35,7 +35,7 @@ async def test_legacy_climate_compat( loop = asyncio.get_running_loop() async with run_compiled(yaml_config), api_client_connected() as client: - entities, services = await client.list_entities_services() + entities, _ = await client.list_entities_services() initial_state_helper = InitialStateHelper(entities) climate_infos = [e for e in entities if isinstance(e, ClimateInfo)]