Make geniushub platforms a list (#126320)

This commit is contained in:
Joost Lekkerkerker 2024-09-20 16:26:41 +02:00 committed by GitHub
parent 992b810fa9
commit 8254a643d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,13 +91,13 @@ SET_ZONE_OVERRIDE_SCHEMA = vol.Schema(
}
)
PLATFORMS = (
Platform.CLIMATE,
Platform.WATER_HEATER,
Platform.SENSOR,
PLATFORMS = [
Platform.BINARY_SENSOR,
Platform.CLIMATE,
Platform.SENSOR,
Platform.SWITCH,
)
Platform.WATER_HEATER,
]
async def _async_import(hass: HomeAssistant, base_config: ConfigType) -> None: