Fix runtime error in CalDAV (#104800)

This commit is contained in:
Michael 2023-11-30 13:50:58 +01:00 committed by Franck Nijhof
parent ea8a47d0e9
commit 0eefc98b33
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3

View file

@ -11,7 +11,11 @@ async def async_get_calendars(
hass: HomeAssistant, client: caldav.DAVClient, component: str
) -> list[caldav.Calendar]:
"""Get all calendars that support the specified component."""
calendars = await hass.async_add_executor_job(client.principal().calendars)
def _get_calendars() -> list[caldav.Calendar]:
return client.principal().calendars()
calendars = await hass.async_add_executor_job(_get_calendars)
components_results = await asyncio.gather(
*[
hass.async_add_executor_job(calendar.get_supported_components)