From 481c50f7a58d97d07081ee03db3fb652589fd849 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker <joostlek@outlook.com> Date: Mon, 27 May 2024 10:51:54 +0200 Subject: [PATCH] Remove platform setup from Jewish calendar (#118226) --- .../components/jewish_calendar/sensor.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/homeassistant/components/jewish_calendar/sensor.py b/homeassistant/components/jewish_calendar/sensor.py index 056fabaa805..de311b27c50 100644 --- a/homeassistant/components/jewish_calendar/sensor.py +++ b/homeassistant/components/jewish_calendar/sensor.py @@ -19,7 +19,6 @@ from homeassistant.const import SUN_EVENT_SUNSET from homeassistant.core import HomeAssistant from homeassistant.helpers.entity_platform import AddEntitiesCallback from homeassistant.helpers.sun import get_astral_event_date -from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType import homeassistant.util.dt as dt_util from .const import DEFAULT_NAME, DOMAIN @@ -143,20 +142,6 @@ TIME_SENSORS: tuple[SensorEntityDescription, ...] = ( ) -async def async_setup_platform( - hass: HomeAssistant, - config: ConfigType, - async_add_entities: AddEntitiesCallback, - discovery_info: DiscoveryInfoType | None = None, -) -> None: - """Set up the Jewish calendar sensors from YAML. - - The YAML platform config is automatically - imported to a config entry, this method can be removed - when YAML support is removed. - """ - - async def async_setup_entry( hass: HomeAssistant, config_entry: ConfigEntry, -- GitLab