Remove deprecated async_get_registry (#91928)

Deprecated in 2021 via #46265, report was added a year ago in #72088
This commit is contained in:
J. Nick Koston
2023-04-23 22:02:21 -05:00
committed by GitHub
parent f3838dde3a
commit fba7c6cacd
3 changed files with 0 additions and 44 deletions

View File

@@ -13,7 +13,6 @@ from homeassistant.backports.enum import StrEnum
from homeassistant.const import EVENT_HOMEASSISTANT_STARTED, EVENT_HOMEASSISTANT_STOP
from homeassistant.core import Event, HomeAssistant, callback
from homeassistant.exceptions import HomeAssistantError, RequiredParameterMissing
from homeassistant.loader import bind_hass
from homeassistant.util.json import format_unserializable_data
import homeassistant.util.uuid as uuid_util
@@ -749,19 +748,6 @@ async def async_load(hass: HomeAssistant) -> None:
await hass.data[DATA_REGISTRY].async_load()
@bind_hass
async def async_get_registry(hass: HomeAssistant) -> DeviceRegistry:
"""Get device registry.
This is deprecated and will be removed in the future. Use async_get instead.
"""
report(
"uses deprecated `async_get_registry` to access device registry, use async_get"
" instead"
)
return async_get(hass)
@callback
def async_entries_for_area(registry: DeviceRegistry, area_id: str) -> list[DeviceEntry]:
"""Return entries that match an area."""